0

jQuery Mobile を参照するスクリプトを使用すると、次の行があります。

<a href="#" id="buttonAnswer1" data-role="button" data-inline="true" >check</a>

このボタンがクリックされ、hello() 関数を呼び出すときのリスナーを追加するにはどうすればよいでしょうか? すなわち

<a href="#" id="buttonAnswer1" data-role="button" data-inline="true">check</a>

<script>
function hello(){
  console.log("hello world");
}
</script>
4

1 に答える 1

1

これは、通常の jQuery とまったく違いはありません。つまり、.onを使用してイベント ハンドラーをバインドできます。

たとえば、イベント委任で .on を使用する

$(document).on('click', '#buttonAnwser1', hello);

または、直接バインドすることもできます

$('#buttonAnswer1').on('click', hello);
于 2012-12-10T03:15:16.410 に答える