Rumah > Artikel > hujung hadapan web > jquery checkbox不可选怎么实现
jquery checkbox不可选的实现方法:首先创建一个代码示例文件;然后通过“$(this).attr("disabled", false);”语句设置checkbox不可选即可。
本文操作环境:Windows7系统、jquery1.2.6、Dell G3电脑。
jquery如何让checkbox不可选?
在jquery中,想让checkbox不可选,就需要禁用checkbox(复选框),给checkbox添加disabled属性即可。
示例:
$("input[type=checkbox]").each(function () { $(this).attr("disabled", false); });
那么禁用的checkbox,如何启用尼?
JQuery禁用或者启动checkbox的代码
function changeCheckboxState(lx){ if(true){//禁用 $("input[type=checkbox]").each(function(){ $(this).attr("disabled",true); }); }else{//启用 $("input[type=checkbox]").each(function(){ $(this).attr("disabled",false); }); } }
推荐:《jquery视频教程》
Atas ialah kandungan terperinci jquery checkbox不可选怎么实现. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!