在JS中怎么使一个下拉框不可使用啊??
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JS中怎么使一个下拉框不可使用啊??相关的知识,希望对你有一定的参考价值。
RT,求解
给下拉框加disabled属性例如
JS代码:
<script type="text/javascript">
window.onload = function()
document.getElementById('select').disabled=true;
</script>
html代码:
<form id="form1" name="form1" method="post" action="">
<select name="select" id="select">
<option value="a">1</option>
<option value="b">2</option>
</select>
</form> 参考技术A 用JQ
Vue设置输入框、下拉框不可修改
参考技术A 通过绑定a-input、j-tree-select的disabled属性实现不可修改效果为:
注意如果写为disabled="true",可能报错Invalid prop: type check failed for prop "disabled". Expected Boolean, got String with value "true".
以上是关于在JS中怎么使一个下拉框不可使用啊??的主要内容,如果未能解决你的问题,请参考以下文章