<input type="button" value="修改文本框的值" id="btn"><br>
<input type="text" value=""/><br>
<input type="text" value=""/><br>
<input type="text" value=""/><br>
<input type="text" value=""/><br>
<input type="text" value=""/><br>
<input type="text" value=""/><br>
document.getElementById('btn').onclick=function () {
var inputs=document.getElementsByTagName('input');
for (var i = 0; i < inputs.length; i++) {
//判断这个元素是否是按钮
if (inputs[i].type!='button'){
inputs[i].value='已经修改了';
}
网友评论