元素的ID慎用length

 先来看看一段错误的代码:<!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"/>惹的祸,因此我们可要注意了

上一篇:java中容器介绍(List,Set,Map)


下一篇:再谈JavaScript中对象的prototype链