Jquery移动更改页面

前端之家收集整理的这篇文章主要介绍了Jquery移动更改页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有从网站的网页的两列布局,
http://jquerymobile.com/demos/1.0.1/

现在他们已经规定了changePage使用
< a href =“#xxx”data-role =“button”>示例< / a>

但是我的问题是如何使用代码来编程改变页面

$ .mobile.changePage(“#xxx”); isnt为我工作

解决方法

这里是一个真正的简单例子: http://jsfiddle.net/shanabus/YjsPD/
$.mobile.changePage("#page2");

文档:http://api.jquerymobile.com/jQuery.mobile.changePage/

其他示例:

//transition to the "about us" page with a slideup transition
$.mobile.changePage( "about/us.html",{ transition: "slideup"} );

//transition to the "search results" page,using data from a form with an ID of "search""   
$.mobile.changePage( "searchresults.PHP",{
    type: "post",data: $("form#search").serialize()
});

//transition to the "confirm" page with a "pop" transition without tracking it in history   
$.mobile.changePage( "../alerts/confirm.html",{
    transition: "pop",reverse: false,changeHash: false
});

更新

正如Chase Roberts在下面的注释中指出的,这个changePage方法在1.4版本中已被弃用。这是新的pagecontainer change事件的文档。

例:

$.mobile.pageContainer.pagecontainer("change","#page",{ options });

这也是关于这个问题的答复:how to change page in latest jquery mobile (1.4 beta)?

原文链接:https://www.f2er.com/jquery/183878.html

猜你在找的jQuery相关文章