下面的代码尝试在 jQueryMobile 中实现按钮操作,但它对我不起作用。请让我知道我错在哪里。一切都写在 HTML 文件中。我在这里提供我的代码时遇到了一些问题。这是我正在尝试的。在标准 HTML 格式中,我在标签之间编写以下script
代码
$('#theButton').click(function() {
alert('The Button has been clicked,');
});
在body
标签中——
<div data-role="page">
<div data-role="content">
<input type="button" id="theButton" name="theButton" value="The Button">
</div>
但是该操作没有被调用。