admin管理员组文章数量:1339781
I am facing a problem with a JavaScript readonly field. I have a textboxes which I am making readonly.
if(val == true)
{
ddlCnt.value=objRec.iCntId;
tAdd1.value=objRec.sAddress1;
tAdd2.value=objRec.sAddress2;
tCity.value=objRec.sCity;
tState.value=objRec.sState;
tZip.value=objRec.sZip;
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = true;
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = true;
tAdd1.setAttribute("readonly", true);
tAdd2.setAttribute("readonly", true);
tCity.setAttribute("readonly", true);
tState.setAttribute("readonly", true);
tZip.setAttribute("readonly", true);
}
It is working fine. Now to deactivate this readonly property I used
else
{
tAdd1.value = tAdd2.value = tCity.value = tState.value = tZip.value = "";
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = false;
ddlCnt.value="-1";
vsRec.innerHTML='';
tAdd1.setAttribute("readonly", false);
tAdd2.setAttribute("readonly", false);
tCity.setAttribute("readonly", false);
tState.setAttribute("readonly", false);
tZip.setAttribute("readonly", false);
//vsRec.style.visibility='hidden';
}
But it is not working at all. Can any one please help me out of this problem or any suggestion or tips that can help me a lot regarding this (and why this is not working?).
I am facing a problem with a JavaScript readonly field. I have a textboxes which I am making readonly.
if(val == true)
{
ddlCnt.value=objRec.iCntId;
tAdd1.value=objRec.sAddress1;
tAdd2.value=objRec.sAddress2;
tCity.value=objRec.sCity;
tState.value=objRec.sState;
tZip.value=objRec.sZip;
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = true;
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = true;
tAdd1.setAttribute("readonly", true);
tAdd2.setAttribute("readonly", true);
tCity.setAttribute("readonly", true);
tState.setAttribute("readonly", true);
tZip.setAttribute("readonly", true);
}
It is working fine. Now to deactivate this readonly property I used
else
{
tAdd1.value = tAdd2.value = tCity.value = tState.value = tZip.value = "";
//tAdd1.disabled = tAdd2.disabled = tCity.disabled = tState.disabled = tZip.disabled = ddlCnt.disabled = false;
ddlCnt.value="-1";
vsRec.innerHTML='';
tAdd1.setAttribute("readonly", false);
tAdd2.setAttribute("readonly", false);
tCity.setAttribute("readonly", false);
tState.setAttribute("readonly", false);
tZip.setAttribute("readonly", false);
//vsRec.style.visibility='hidden';
}
But it is not working at all. Can any one please help me out of this problem or any suggestion or tips that can help me a lot regarding this (and why this is not working?).
Share edited Jan 10, 2023 at 17:45 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked May 20, 2011 at 6:39 Arindam RudraArindam Rudra 6242 gold badges9 silver badges24 bronze badges4 Answers
Reset to default 7You need to remove the attribute with removeAttribute.
tAdd1.removeAttribute("readonly");
tAdd2.removeAttribute("readonly");
tCity.removeAttribute("readonly");
tState.removeAttribute("readonly");
tZip.removeAttribute("readonly");
You need to remove the readonly attribute, e.g.:
tAdd1.removeAttribute("readonly");
readonly
is not a true/false attribute, it's a present/not-present attribute. You need to remove the attribute, not set it to false.
The presence of the readonly attribute causes the input box to bee read-only, not setting it to true or false. Remove the attributes.
本文标签: JavaScript Readonly attributeStack Overflow
版权声明:本文标题:JavaScript Readonly attribute - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743603442a2508944.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论