checkboxradio不是一个函数

时间:2013-06-11 07:02:48

标签: jquery jquery-mobile

我在我的网络应用程序中使用jQuery 1.9.1,jQuery mobile 1.3.1(js& css)。当我调用checkboxradio取消选中所有复选框时,它抛出异常“checkboxradio不是函数”

$("input[type='checkbox']").attr("checked",false).checkboxradio("refresh");

当我尝试使用示例应用时,它会起作用。

问题是:jQuery mobile 1.3.1.js文件中的函数没有被调用。我确实在firebug中加载的脚本中看到了jQuery mobile 1.3.1.js。

请告知如何找出问题所在。

1 个答案:

答案 0 :(得分:0)

点击此处查看复选框取消选中脚本http://jsfiddle.net/yeyene/dzckn/2/

JQUERY

$("#checklisttable input").each(function(){
    $(this).prop('checked', false);
});