先来看看一段错误的代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<mce:script type="text/javascript"><!--
(function(){
//id=length
var d=document.getElementsByTagName("input").length;
alert(d);
})();
// --></mce:script>
</head>
<body>
<form id="form">
<input type="text" id="length" />
<input type="submit" id="submit" />
</form>
</body>
</html>
这段代码中第一个input的ID为length,我们可以在Ie,firefox的结果都是0,这些都是<input type="text" id="length"/>惹的祸,因此我们可要注意了
时间: 2024-09-14 13:12:15