2

我认为这与JQM pagebeforechange 和 event source是同一个问题,但那里没有确凿的答案。

有谁知道如何获取触发事件的对象?

$(document).bind("pagebeforechange", function ( event , data) {
    //event is triggered from an anchor tag... 
    //Is it possible to get reference to anchor here?
});

谢谢。

更完整的例子:

<div data-role="page" id="ANGRY">
<div data-role="header">
    Solo Questions</div>
<div data-role="content">
    <fieldset data-role="controlgroup">
        <legend>Since your last scheduled prompt, how <strong>angry</strong> have you felt?</legend>
        <input type="radio" name="ANGRY" value="1" id="ANGRY1" />
        <label for="ANGRY1">
            None</label>
        <input type="radio" name="ANGRY" value="2" id="ANGRY2" />
        <label for="ANGRY2">
            Some</label>
        <input type="radio" name="ANGRY" value="3" id="ANGRY3" />
        <label for="ANGRY3">
            A Lot</label>
    </fieldset>
</div>
<div class="ui-grid-a">
    <div class="ui-block-a">
        <a href="#HAPPY" data-role="button" data-icon="arrow-l" data-iconpos="left">prev</a></div>
    <div class="ui-block-b">
        <a href="#IRRITABL" data-role="button" data-icon="arrow-r" data-iconpos="right">next</a></div>
</div>
</div>

我希望能够确定是什么触发了 pagebeforechange 事件——“上一个”按钮或“下一个”按钮。这样做的目的是在移动到下一页之前执行验证,而不是在返回上一页时执行验证。

4

2 回答 2

0
于 2014-02-23T14:26:14.040 回答
0

toPage 是否适用于此?

JS

$(document).bind("pagebeforechange", function ( event , data) {
    console.log('To Page: '+data.toPage);
});​

HTML

<div data-role="page" id="home">
    <p>Open up the console and Click the Info link</p>
    <ul>
        <li><a href="#info">Info</a></li>
    </ul>
</div>

<div data-role="page" id="info">
    <ul>
        <li><a href="#home">Home</a></li>
    </ul>
</div>​
于 2012-06-20T01:59:21.760 回答