超級基本問題,但我不明白,爲什麼下面的代碼將無法正常工作:充分利用撥動開關值jQuery Mobile的
HTML
<label for="flip-1">Flip switch:</label>
<select name="flip-1" id="flip-1" data-role="slider">
<option value="off">Off</option>
<option value="on">On</option>
</select>
<button id="submit">Submit</button>
JS
$(document).delegate("#submit", "tap", function() {
alert($("#flip-1").val());
});
當按下提交時返回Uncaught TypeError: Cannot call method 'call' of undefined (jquery.mobile-1.3.0-beta.1.js:2823)
。
改變'tap'到'click'使得它爲我工作。 jQuery Mobile中兩者有什麼區別嗎? –