<div data-role="header" class="page-header"><h2>Header</h2></div>
<div data-role="content">
<form>
<fieldset data-role="controlgroup">
<legend>Legend:</legend>
<input name="checkbox-1a" id="checkbox-1a" type="checkbox"/ >
<label for="checkbox-1a">Label</label>
そして、私はこのスクリプトを使用します:
$( ".class").on( 'tap', tapHandler );
function tapHandler( event ) {
alert(123);
}
これをヘッダーに入れると$(".page-header").on('tap'
うまくいきますが、$("input").on('tap')
何も起こらないとき
なんで?onclick がinput
モバイル デバイスで動作しない