动态Jquery移动检查复选框不起作用

时间:2014-02-03 15:10:37

标签: javascript jquery html jquery-mobile

我有来自jquery mobile的复选框

     <form>
    <input class="checkclass"   name="d11" id="checkbox-mini-0" data-mini="true" type="checkbox">
    <label for="checkbox-mini-0">Completed This.</label>
   </form>
         <br><br>
         <div id="checkit">check</div>

我正在尝试使用以下js动态检查 name =“d11”

$('#checkit').click(function() {
$("input[name='d11']").prop('checked', true);
    alert("hi");
});

这里是小提琴.. http://jsfiddle.net/w2jJs/ ..但它不能在jquery mobile中工作。有人请指导我错在哪里

1 个答案:

答案 0 :(得分:1)

您需要将.checkboxradio()用于jQuery mobile

$('#checkit').click(function () {
    $("input[name='d11']").prop('checked', true).checkboxradio('refresh');
});

DEMO