0

下面的代码尝试在 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>

但是该操作没有被调用。

4

1 回答 1

0

编辑:请尝试以下代码:

<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

<script language="javascript">

    $(function() {
     $('#theButton').on('tap click',function(event, ui) {
        alert('The Button has been clicked');
     });
    });

</script>
</head>
<body>
<div data-role="page">
<div data-role="content">
    <input type="button" id="theButton" name="theButton" value="The Button">
</div>
</div>
</body>
</html>
于 2012-12-26T06:37:59.427 回答