<script>
function check(theform){
document.form1.input.value="changed content";
document.form1.sp.innerHTML="haha";
//document.getElementById("spid").innerHTML="haha";
}
</script>
</head>
<body><form name="form1" action="shouye.html">
<input type="text" name="input" value="text content"/><span name="sp" id="spid">123</span><br />
<input name="submit" type="button" value="提交" onClick="check()"/>
</form>
</body>
上面通过路径访问span标签报错——'document.form1.sp'为空或不是对象,而同样方法访问文本框却正确,求解释。
function check(theform){
document.form1.input.value="changed content";
document.form1.sp.innerHTML="haha";
//document.getElementById("spid").innerHTML="haha";
}
</script>
</head>
<body><form name="form1" action="shouye.html">
<input type="text" name="input" value="text content"/><span name="sp" id="spid">123</span><br />
<input name="submit" type="button" value="提交" onClick="check()"/>
</form>
</body>
上面通过路径访问span标签报错——'document.form1.sp'为空或不是对象,而同样方法访问文本框却正确,求解释。