如何用JS控制将form中的所有input的readonly属性置为FALSE,input的个数不确定,我需要做成公共的JS方法。
这是明确input的个数及id的情况下,我的想法是不管有多少input只要在form中的就都能点击按钮之后修改readonly属性,不知道可不可以实现<script>fu...
这是明确input的个数及id的情况下,我的想法是不管有多少input只要在form中的就都能点击按钮之后修改readonly属性,不知道可不可以实现
<script>function doclick1(){
var txtN = document.getElementById("contactus5");
txtN.readOnly = false;
}
</script>
<input type="text" id="contactus5" readonly>
<input type="button" name="button4" value="修改" onclick="doclick1();" /> 展开
<script>function doclick1(){
var txtN = document.getElementById("contactus5");
txtN.readOnly = false;
}
</script>
<input type="text" id="contactus5" readonly>
<input type="button" name="button4" value="修改" onclick="doclick1();" /> 展开
1个回答
展开全部
测试成功:
<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" id="contactus1" readonly>
<input type="text" id="contactus2" readonly>
<input type="text" id="contactus3" readonly>
<input type="button" name="button4" value="修改" onclick="doclick1();" />
<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" id="contactus1" readonly>
<input type="text" id="contactus2" readonly>
<input type="text" id="contactus3" readonly>
<input type="button" name="button4" value="修改" onclick="doclick1();" />
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询