通常我在写javascript的时候从来没有意识到document和window.document之间是有区别的,实际使用过程中也确实没有遇到问题,但是这埋下了非常大的隐患,当出现问题时,这个bug就会变得非常难找。
代码如下:
test1.jsp:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test1.jsp</title>
</head>
<body>
<iframe src='test2.jsp' />
</body>
</html>
test2.jsp:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test2.jsp</title>
</head>
<script language='JavaScript'>
function showA() {
alert(document.getElementById('input2').value);
}
function showB() {
alert(window.document.getElementById('input2').value);
}
</script>
<body>
<input id='input2' type='text' name='name2' value='ph2' /><br>
<input type='button' name='butt1' value='showA()' οnclick='javascript:showA();' /><br>
<input type='button' name='butt2' value='showB()' οnclick='javascript:showB();' /><br>
</body>
</html>
点showA()和点showB()有区别吗?大多数机器上都是没有,但是毕竟还是有,今天就被我遇到了,一个用户youxing他就告诉我在他的笔记本上showB()会出现错误。(操作系统,浏览器版本,设置都是一样,奇怪吧!)
问题在于当test2.jsp存在于iframe中时,这里的window.document究竟是指iframe里的document,还是指外面这个document呢?
所以,在此blog提醒自己,可以省略window.的地方,还是省略吧。
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/rekcah_ph/archive/2005/08/30/467859.aspx