我已经问过类似的问题标签,但我发现该解决方案无法使用标签。所以,如果我使用的是引用 jQuery Mobile 的脚本,我有以下行:
<button id="buttonAnswer1" data-inline="true">Click me</button>
当单击此按钮并调用 hello() 函数时,我将如何添加一个侦听器?IE
<button id="buttonAnswer1" data-inline="true">Click me</button>
<script>
function hello(){
console.log("hello world");
}
</script>