jqmobile的ajax请求,Data-transition and data-ajax together in Jqmobile

问题

In my Jqmobile code, i am trying to transit pages by applying data-transition="slide" for anchor links..

The Problem is that the linked pages have custom jquery coded by myself...

When i hit an anchor with data-transition="slide" and href then it surely transit but the linked page custom jquery scripts do not run...

I tried using data-ajax-"false" but in this case custom script runs but not data-transition="slide"...

I want both together to run... Can it be possible...??

Here is the simple custom, in this i am show/hiding input boxes..

$(document).bind("pageinit", function(){

$('#near_index').hide();

$('#find').click(function() {

$('#near_index').show();

});

});

Here is the HTML,

Category 2Category 2

回答1:

pageinit is for plugin intialization - see here.

So this event will only fire once when JQM first loads. After your "page" (DOM) is initialized. Any other pages you load will be pulled into the DOM, but will not trigger another pageinit.

Just use any of the other available events (link above), such as pagebeforeshow or pageshow. These will fire with every page that is loaded into the DOM. Just put a console.log("HELLO") inside the event handler and see if it fires.

EDIT Transitions:

You cannot set data-ajax="false" and have a transition (slide from page A to page B), because the transition is the result of using AJAX to load the new page INTO the DOM vs. a regular link (data-ajax="false") dropping the old DOM and loading the new page (new DOM).

The concept of JQM is to always stay in the SAME "Page" and just load in/out new pages via Ajax. That's how you can do transitions (load a new page, position it next to the old one and then slide).

This may also be the reason your custom code is not firing, because if you say data-ajax="false" you are telling JQM "I'm done here", and load a new page.

If you don't need data-ajax="false", leave it out.

来源:https://stackoverflow.com/questions/10943770/data-transition-and-data-ajax-together-in-jqmobile

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值