一、如何用jquery设置文本框只读,或禁用文本框编辑功能?
例子:
jQuery(":text").disabled=true;
<script>
$(document).ready(function(){
$(":text").each(function(){
this.disabled=true;
});
});
</script>
二、jquery为文本框添加只读属性readonly
例子:
三、jquery如何设置文本框只读
例子,设置input文本框的只读属性。
四、jquery如何让checkbox只读
例子:
<html>
<head>
<script type="text/javascript">
function disable()
{
document.getElementById("check1").disabled=true
}
</script>
</head>
<body>
<form>
<input type="checkbox" id="check1" />
<input type="button" onclick="disable()" value="Disable Checkbox" />
</form>
</body>
</html>
五、jquery让所有表单元素均为只读
将所有表单的所有表单控件的readonly全部设置为readonly~
注意,如果直接使用input选择器的话,包括了按钮~
所以要排除按钮、隐藏域之类的input的话~
使用not选择器: