iframe 에 이벤트처리가 안되네요...
Posted: 2005 03 22 11:37 58
아래소스를 보시면 아시겠지만 iframe 에 onfocus 를 넣었음에도 불구하고 iframe 영역을 클릭해도 아무런 반응이 없습니다.
익스플로러에서는 클릭하면 제대로 alert 창이 뜨는데 불여우에서는 왜 안될까요?
안되는 이유를 아시면 좀 알려주시면 감사하겠습니다.
아래는 iframe 사용한 테스트 소스구요
---------------------------------------------------------------------
<html>
<head>
<title>a</title>
<script type="text/javascript">
function focusTest(){
alert("test");
}
</script>
<body>
<iframe height="300" name="editFrame" id="editFrame" marginheight="0" marginwidth="0" width=600 src="aaa.html" frameborder=1 scrolling="yes" onfocus="focusTest()"></div>
</body>
</html>
----------------------------------------------------------------
아래는 iframe 의 src 인 aaa.html 입니다.
----------------------------------------------------------------
<html>
<head>
<title>iframe</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
</head>
<body>
test
</body>
</html>
----------------------------------------------------------------
익스플로러에서는 클릭하면 제대로 alert 창이 뜨는데 불여우에서는 왜 안될까요?
안되는 이유를 아시면 좀 알려주시면 감사하겠습니다.
아래는 iframe 사용한 테스트 소스구요
---------------------------------------------------------------------
<html>
<head>
<title>a</title>
<script type="text/javascript">
function focusTest(){
alert("test");
}
</script>
<body>
<iframe height="300" name="editFrame" id="editFrame" marginheight="0" marginwidth="0" width=600 src="aaa.html" frameborder=1 scrolling="yes" onfocus="focusTest()"></div>
</body>
</html>
----------------------------------------------------------------
아래는 iframe 의 src 인 aaa.html 입니다.
----------------------------------------------------------------
<html>
<head>
<title>iframe</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
</head>
<body>
test
</body>
</html>
----------------------------------------------------------------