jquery mobile在嵌套按钮上添加click事件

时间:2011-07-21 10:47:21

标签: uibutton jquery-mobile mouseclick-event

我有一个嵌套按钮,我试图在其上添加点击事件,但似乎没有工作。

这是我的对象

<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!");
});

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

2 个答案:

答案 0 :(得分:1)

我在使用jQuery.mobile 1.0b1

在Chrome中运行的演示中看到console.log输出正常
<!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>

注意:there is no document.ready() for jQuery.mobile因此,如果您将jQuery包装在 document.ready()中,那么它可能会导致您的问题。最好绑定$("div:jqmData(role='page')").live('pageshow',...);以确保页面准备就绪。也就是说,在这个简单的情况下,它仍然可以在没有.live绑定的情况下工作。

答案 1 :(得分:0)

只尝试ID

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