<!DOCTYPE html>
<html>
<head>
<script>
function getElements()
{
var x=document.getElementsByName("first");
alert(x.length);
}
</script>
</head>
<body>
<h1 name="first">hi</h1>
<form>
uname:<input type="text" name="first" value="sree"> <br>
password:<input type="password" name="first" value="dhar">
<p name="first">hello</p>
<input type="button" onclick="getElements()" value="How many elements named 'x'?">
</form>
</body>
</html>
我有這個code.The警報顯示4
在chrome
。但在ie
它顯示2
。什麼可能是原因。奇怪的行爲是工作在鉻
在此先感謝...
顯示4我在IE9/10 ... – lifetimes
的Editplus有內置瀏覽器ie.It沒有在那裏工作 – PSR
我使用IE8先生 – PSR