首页 > 语言 > JavaScript > 正文

用js一次改变多个input的readonly属性值的方法

2024-05-06 16:07:16
字体:
来源:转载
供稿:网友
这篇文章主要介绍了用js一次改变多个input的readonly属性值的方法,需要的朋友可以参考下

复制代码 代码如下:


<script>
function doclick1(){
var txtN = document.getElementsByTagName("input");
for(i=0;i<txtN.length;i++){
if(txtN[i].type="text"){
txtN[i].readOnly=false;
}
}
}
</script>
<input type="text" readonly>
<input type="text" readonly>
<input type="text" readonly>
<input type="button" value="修改" />

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选