0

如果我注释掉 jquery.mobile...js 文件,这很好用,包括它,每次我单击复选框时,onclick 事件都会触发两次。onchange 事件也是如此。有任何想法吗?

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <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>
</head>
<body>
    <script>
        function tester() { alert("I get called twice on click"); }
    </script>
    <input id="abc" name="myCheckbox" onchange="tester()" type="checkbox" value="true" />

    <label for="myCheckbox">Click me</label>
</body>
</html>
4

2 回答 2

3

这是设计使然,因为这两个事件都在发生。见例子:http: //jsfiddle.net/Twisty/T3qmG/

HTML:

<html>
    <head>
        <title>Checkbox Test</title>
    </head>
    <body>
        <div data-role="page">
            <div data-role="header">
                <h2>Checkbox Test</h2>
            </div>
            <div data-role="content">
                    <input type="checkbox" id="checkbox-choice-1" />
                    <label for="checkbox-choice-1">Click me</label>
            </div>
        </div>
    </body>
</html>

查询:

$(document).ready(function(){
    $("#checkbox-choice-1").click(function(){
        alert("Click event triggerd.");
    });
    $("#checkbox-choice-1").change(function(){
        alert("Change event triggerd.");
    });
});

如果可能的话,我会建议分离你的脚本代码。您可以为一个或两个事件提供一个函数。

于 2012-12-04T22:36:00.157 回答
0

您的标记格式不正确。<label>标签指向一个不存在的 id 。它指向“myCheckbox”,但输入标签的 id 是“abc”。此更改解决了您的问题,并且标记得到了正确增强。

<input id="abc" name="myCheckbox" onchange="tester()"
    type="checkbox" value="true" />
<label for="abc">Click me</label>
于 2012-12-04T22:27:51.283 回答