我只想让 getElementById 工作,但我可以,我使用 chrome 得到这个错误:
Uncaught ReferenceError: calculate is not defined
这是html:
<html>
<body>
<table>
<tr><td>Input the test variable:</td>
<td><input id="x" onchange="calculate();"></td></tr>
<tr><th>Calculate the number</th>
<td><button onclick="calculate();">Calculate</button></td></tr>
</table>
<script src="test1javascript.js"></script>
</body>
</html>
这是javascript:
window.onload=function calculate(){
var x=document.getElementById("x");
if(x==5){
alert(x);
}
}