1

我在这里有一段我​​的 JQMobi 代码。问题是它不会动态切换页面:

<div title='Whatever' id="main" class="panel" selected="true" data-tab="navbar_home" data-footer="none">
        <div class="swipe_area">
            <!-- nothing here, just for swiping to not disturb other elements -->
            <- Swipe me ->
        </div>
        <script>
            var init_swipe = function () {
            $(".swipe_area").swipeListener({
                    vthreshold: 30,
                    hthreshold: 80,
                    callBack: function (dir) {
                        if(dir.left) {
                            window.location.href = "#menulink3";
                            alert("go to menulink3");
                        }
                        else if(dir.right) {
                            window.location.href = "#menulink2";
                            alert("go to menulink2");
                        }
                    }
                });
            };
            window.addEventListener("load", init_swipe, false);
        </script>
</div>
<div title='Whatever' id="menulink2" class="panel" selected="true" data-tab="navbar_home" data-footer="none">
    content of menulink2
</div>
<div title='Whatever' id="menulink3" class="panel" selected="true" data-tab="navbar_home" data-footer="none">
    content of menulink3
</div>

浏览器中的 url 确实发生了变化,它会发出警报(只是为了确定),但页面中没有切换。此外,正常的 a href 链接也可以正常工作。是否有一个 jqmobi 函数我必须调用以使其刷新或什么?

提前致谢

4

1 回答 1

1

您无需更改window.location导航。看看以$.ui.loadContentDiv编程方式进行。

于 2013-03-16T19:19:40.910 回答