<html>
<script>
function alerts()
{
alert(document.getElementById('wb').value);
}
</script>
<body>
<input type="text" id="wb"><Br>
<input type="text" id ="wb"><br><Br>
<input type="button" onclick="alerts()" value="查看">
</body>
</html>
执行上述的代码发现,浏览器值读了第一个值,而不会读取第二个值.
所以不要在同一个页面用不唯一的id,很容易出错.