我想从禁用了文本的输入元素中获取文本。
到目前为止,我已经在chrome控制台中尝试了以下代码,但无效:
document.getElementById("abc").getAttribute("value");
当我用Developer工具检查要获取的文本时,代码如下:
<input id="abc" class="form-control input" disabled="disabled">
下面,我显示一个示例:
function myFunction() {
document.getElementById("abc").disabled = true;
}
<!DOCTYPE html>
<html>
<body>
Name: <input id="abc" class="form-control input">
<p>Click the button to disable the text field.</p>
<button onclick="myFunction()">Disable Text field</button>
</body>
</html>
感谢您的帮助。