<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
window.onload=function(){
var oBtn1=document.getElementById('all');
var oBox=document.getElementsByTagName('input')
oBtn1.onclick=function(){
for(var i=0;i<oBox.length;i++)
{
oBox[i].checked=true;
}
}
};
</script>
</head><body>
<button id="all">value="全选" </button>
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
</body>
</html>
这个代码的问题就是没有问题。我把这段代码copy到webstrom运行后,可以完美实现。觉得我用的是一个假的dreamweaver。