0

使用引用 jQuery Mobile 的脚本我有以下行:

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

当单击此按钮并调用 hello() 函数时,我将如何添加一个侦听器?IE

<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 回答