看到這個小提琴:http://jsfiddle.net/Bg9Zx/5/點擊事件不在jQuery Mobile中觸發?
相關代碼:
<fieldset data-role="controlgroup" data-type="horizontal" id="locate-me">
<input type="checkbox" name="loc" id="loc" />
<label for="loc">Locate me</label>
</fieldset>
$("#loc").click(function(){
alert('locate clicked!');
});
爲什麼沒有。點擊()事件觸發?如果我沒有引用jQuery Mobile,則工作得很好。
謝謝!
哦,我看到了什麼問題 - 在jQuery Mobile中的水平復選框中,複選框本身isn'不可見,只有標籤,所以我需要拿起標籤上的點擊事件。謝謝! – Richard
歡迎您! – Dynamikus
如何獲取選中的屬性? –