$input.disabled = true;
or
$input.disabled = "disabled";
哪一种是标准方式?相反,如何启用禁用的输入?
$input.disabled = true;
or
$input.disabled = "disabled";
哪一种是标准方式?相反,如何启用禁用的输入?
当前回答
2018,无JQuery(ES6)
禁用所有输入:
[...document.querySelectorAll('input')].map(e => e.disabled = true);
禁用id=“my input”的输入
document.getElementById('my-input').disabled = true;
问题是JQuery,它只是仅供参考。
其他回答
$("input")[0].disabled = true;
or
$("input")[0].disabled = false;
<html>
<body>
Name: <input type="text" id="myText">
<button onclick="disable()">Disable Text field</button>
<button onclick="enable()">Enable Text field</button>
<script>
function disable() {
document.getElementById("myText").disabled = true;
}
function enable() {
document.getElementById("myText").disabled = false;
}
</script>
</body>
</html>
对输入类型禁用true:
如果是特定的输入类型(例如文本类型输入)
$("input[type=text]").attr('disabled', true);
对于所有类型的输入类型
$("input").attr('disabled', true);
像这样使用,
$( "#id" ).prop( "disabled", true );
$( "#id" ).prop( "disabled", false );
禁用:
$('input').attr('readonly', true); // Disable it.
$('input').addClass('text-muted'); // Gray it out with bootstrap.
启用:
$('input').attr('readonly', false); // Enable it.
$('input').removeClass('text-muted'); // Back to normal color with bootstrap.