HI我試圖從的getElementById獲取股利,但它不是對我這方面的工作是我的代碼getElementBId被稱爲的getElementById不工作
<body onload="ErrorCheck(-1)">
<script type="text/javascript">
function ErrorCheck(var1)
{
if(var1 = -1)
{ alert("in function");
var cont = document.getElementBId('msg');
if(cont==null){
alert("null");
}
else{
alert("not null");
}
}
}
</script>
<h1 class="header">Register</h1>
<div id="msg"></div>
</body>
後,該功能就死因爲它不若去任何不然。請檢查什麼我...Id('msg');
之前做錯了
因爲它不是'document.getElementBId',而是**'document.getElementById' ** – Joseph
也是,腳本標籤應該在'
'部分。 – Dementic@Dementic它仍然存在onload。 – Paulpro