0

我必须归档。一个 HTML:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv='Content-type' content='text/html; charset=utf-8'>
    <title>JavaScriptSolution</title>
    <script src='./script.js' charset='utf-8' defer='defer'></script>
</head>
<body>
<input id='A1' value='On Keydown' style='width:100px; height:50px; margin:30px;'/>

<input id='A2' value='On Keyress' style='width:100px; height:50px; margin:30px;'/>

<input id='A3' value='On Keyup' style='width:100px; height:50px; margin:30px;'/>

<input id='A4' value='On Focus' style='width:100px; height:50px; margin:30px;'/>

<input id='A5' value='On Blur' style='width:100px; height:50px; margin:30px;'/>

<div id='A6' style='width:100px; height:50px; margin:30px;'>
    On Click
</div>
<div id='A7' style='width:100px; height:50px; margin:30px;'>
    On Mouse Move
</div>
<div id='A8' style='width:100px; height:50px; margin:30px;'>
    On Mouse Over
</div>
<div id='A9' style='width:100px; height:50px; margin:30px;'>
    On Mouse Out
</div>


</body>
</html>

和另一个 JavaScript:

function byid(id_name) 
{ 
    return document.getElementById(id_name); 
}

byid('A1').onkeydown=function a1(){ alert('On Keydown'); }
byid('A2').onkeypress=function a2(){ alert('On Keypress') ; }
byid('A3').onkeyup=function a3(){ alert('On Keyup') ; }
byid('A4').onfocus=function a4(){ alert('On Focus'); }
byid('A5').onblur=function a5(){ alert('On Blur') ; }
byid('A6').onclick=function a6(){ alert('On Click') ; }
byid('A7').onmousemove=function a7(){ alert('On Mouse Move') ; }
byid('A8').onmouseover=function a8(){ alert('On Mouse Over') ; }
byid('A9').onmouseout=function a9(){ alert('On Mouse Out') ; }

我的脚本在 Firefox、Safari、IE、Chrome 上运行良好。但不适用于 Opera 和某些 Android 浏览器。我的脚本有什么问题?

任何人都可以解决这个问题吗?

4

1 回答 1

2

添加defer='defer'到脚本标签确实应该等到页面完全加载,但就目前而言,即使这些天并不是所有的浏览器都支持它,即它们会忽略它,导致执行代码时元素不存在。

浏览器支持的完整列表可以在这里看到。快照:

您可能拥有旧版本的 Opera 或 Opera mini,因此无法正常工作。

window.onload要解决这个问题,只需使用适用于所有浏览器的非常基本的方法来确保安全:

window.onload = function() {
    byid('A1').onkeydown=function a1(){ alert('On Keydown'); }
    byid('A2').onkeypress=function a2(){ alert('On Keypress') ; }
    //...
};

另一种方法是将带有对您的 JS 文件的引用的脚本标记放在文档的最后,就在</body>标记之前 - 带有或不带有defer.

于 2013-10-13T13:04:01.887 回答