<html>
<head>
<title>Page Title</title>
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" />
<script>
var row=2,col=11,size=20,gap=5
window.onload=function(){
var wrap=document.createElement("div")
wrap.style.margin="0 auto"
wrap.style.width=(size+gap)*col+"px"
for(var i=0i<rowi++){
var rows=document.createElement("div")
rows.style.float="left"
rows.style.marginBottom=gap+"px"
for(var j=0j<colj++){
var div=document.createElement("img")
div.src="a.png"
div.style.width=size+"px"
div.style.height=size+"px"
div.style.float="left"
div.style.marginLeft=gap+"px"
div.onclick=function(){
!this.abc?this.src="b.png":this.src="a.png"
this.abc=!this.abc
}
rows.appendChild(div)
}
wrap.appendChild(rows)
}
document.body.appendChild(wrap)
}
</script>
</head>
<body>
</body>
</html>
设置radio的checked属性为ture即为选中。<input type="radio" id="radioId" value="1" >
选中单选框JS代码:
var target = document.getElementById("radioId")
target.checked = true
附完整代码:
<!DOCTYPE html>
<!--STATUS OK-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="content-type" content="text/htmlcharset=gbk" />
<meta property="wb:webmaster" content="3aababe5ed22e23c" />
<meta name="referrer" content="always" />
<title>demo</title>
</head>
<body>
<input type="radio" value="radio1" id="radio1" name="radio"/><label for="radio1">RADIO 1</label>
<input type="radio" value="radio2" id="radio2" name="radio"/><label for="radio2">RADIO 2</label>
<input type="radio" value="radio3" id="radio3" name="radio"/><label for="radio3">RADIO 3</label>
<input type="radio" value="radio4" id="radio4" name="radio"/><label for="radio4">RADIO 4</label>
<br/><br/>
<button onclick="selectRadio('radio1')">选中radio1</button>
<button onclick="selectRadio('radio2')">选中radio2</button>
<button onclick="selectRadio('radio3')">选中radio3</button>
<button onclick="selectRadio('radio4')">选中radio4</button>
<br/>
<br/>
</body>
<script type="text/javascript">
function selectRadio(radioId) {
var target = document.getElementById(radioId)
target.checked = true
}
</script>
</html>
HTML中引用JS 步骤如下:
1、打开电脑端html编辑器,然后新建HTML文件,以便待会用来引入js文件。
2、如图,如果想在head标签中使用javascript脚步,那么最好加入window.onload,然后在花括号里面写js代码。
3、而如果是在body下边,那就好办多了,可以直接在script里面写js代码,不需window.onload。
4、也可以新建js文件,把html和js分离。
5、然后在js文件里面写代码,注意不要用script标签。
6、然后在script里面用src来把之前的js文件链接好即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)