获取已禁用复选框单击事件

时间:2015-03-30 04:59:54

标签: javascript php jquery html jquery-mobile

我需要点击事件或鼠标悬停事件复选框。

<input type="checkbox" disabled="disabled" class="chkbox">
<input type="checkbox" disabled="disabled" class="chkbox">
<input type="checkbox" disabled="disabled" class="chkbox">
<input type="checkbox" disabled="disabled" class="chkbox">

任何人都有解决方案请给我。 感谢

1 个答案:

答案 0 :(得分:1)

尝试这样,

$(document).ready(function(){
    $(":checkbox:disabled").click(function () {

    });
});

$(document).ready(function(){
    $('input[type=checkbox]').click(function() {
        if($(this).prop("disabled")) {
            ...
        } else {
            ...
        }
    });
});