1

我有一个嵌套按钮,我试图在上面添加点击事件,但它似乎不起作用。

这是我的对象

<div id="ui-50">
<div class="ui-rpc" data-role="controlgroup" data-type="horizontal" >
    <input type="button" id="rpc-bor" value="<<" />
    <input type="button" id="rpc-back"  value="<" />
    <span style="margin:3px"></span>
    <input type="text" id="rpc-jump" value=""  />
    <input type="button" id="rpc-next" value=">" />
    <input type="button" id="rpc-eor" value=">>" />
    <span style="margin:20px"></span>
    <label id="rpc-current" >0</label>
    <label id="rpc-separator" >/</label>
    <label id="rpc-total" >0</label>
    <span style="margin:20px"></span>
    <label id="rpc-rpp" >0</label>
</div>
</div>

我试图在 id="rpc-eor" 按钮上添加点击事件

$("#ui-50 .ui-rpc #rpc-eor").click(function(){
    alert("yay!");
});

但该事件不会触发。有什么事?请帮忙!提前致谢

4

2 回答 2

1

我在使用jQuery.mobile 1.0b1console.log在 Chrome 中运行的这个演示中看到了预期的输出

<!DOCTYPE html> 
<html> 
  <head> 
     <title>Page Title</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" />
    <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
        $("div:jqmData(role='page')").live('pageshow',function(){
            $("#ui-50 .ui-rpc #rpc-eor").click(function(){
                console.log("yay!");
            });
        });
    });
    </script>
</head> 
<body>
<div data-role="page" id="home">
    <div data-role="header">
       <h1>Header</h1>
    </div>
    <div data-role="content">
        <div id="ui-50">
            <div class="ui-rpc" data-role="controlgroup" data-type="horizontal" >
                <input type="button" id="rpc-bor" value="<<" />
                <input type="button" id="rpc-back"  value="<" />
                <span style="margin:3px"></span>
                <input type="text" id="rpc-jump" value=""  />
                <input type="button" id="rpc-next" value=">" />
                <input type="button" id="rpc-eor" value=">>" />
                <span style="margin:20px"></span>
                <label id="rpc-current" >0</label>
                <label id="rpc-separator" >/</label>
                <label id="rpc-total" >0</label>
                <span style="margin:20px"></span>
                <label id="rpc-rpp" >0</label>
            </div>
        </div>
    </div>
</div>
</body>
</html>

注意:jQuery.mobile没有document.ready(),所以如果你刚刚 document.ready()包装了 jQuery,那么它可能会导致你的问题。最好绑定上$("div:jqmData(role='page')").live('pageshow',...);以保证页面准备就绪。也就是说,在这种简单的情况下,它仍然可以在没有.live绑定的情况下工作。

于 2011-07-21T11:07:31.890 回答
0

仅尝试 id

$("#rpc-eor").click(function(){
    alert("yay!");
});
于 2011-07-21T12:55:58.933 回答