gpt4 book ai didi

javascript - 单击按钮时禁用对文本框的只读

转载 作者:太空狗 更新时间:2023-10-29 13:36:37 33 4
gpt4 key购买 nike

我对文本框使用了“只读”属性,这使得文本框不可编辑,我想知道如何在单击按钮时禁用只读属性。我们可以使用任何脚本来做到这一点吗?

<input type="text" name="" value="" readonly="readonly"/><br/>
<input type="submit" name="" value="update" onclick="" />

最佳答案

你可以做两件事:

HTML:

<input id="myInput"  type="text"  readonly="readonly" /><br />
<input id="myButton" type="submit" value="update" />

JS(选项 1):[ Demo ]

document.getElementById('myButton').onclick = function() {
document.getElementById('myInput').removeAttribute('readonly');
};

JS(选项 2):[ Demo ]

document.getElementById('myButton').onclick = function() {
document.getElementById('myInput').readOnly = false;
};

关于javascript - 单击按钮时禁用对文本框的只读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21609012/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com