Tag: jquery mobile checkbox

REMOVING checkboxradio时jQueryMobile未捕获exception

得到这条消息: Error: cannot call methods on checkboxradio prior to initialization; attempted to call method ‘refresh’ 我按照这里的演示: 丑陋的杂种 这是我的JS片段: function(){ var $pbNum = $(”+ ”+ _val+ ”), $pbNumChk = $($pbNum[0]).on(“change”, function(ev){ $pbNum.remove(); // UNCAUGHT EXCEPTION: “cannot call methods on checkboxradio prior // to initialization; attempted to call method ‘refresh'” }); $pbnumList.controlgroup(“container”).append($pbNum); $pbNumChk.checkboxradio(); // Have also tried […]