jQTouch execute code when AJAX page is loaded

2020-04-21 06:49发布

When the content is static:

<a href="#nearme">Click</a>
<script>$('#nearme').bind('pageAnimationEnd', function(event, info){});</script>

When the content is AJAX:

<a href="page.html">Click</a>

How do I bind something to occur after the AJAX (page.html) is loaded?

2条回答
Summer. ? 凉城
2楼-- · 2020-04-21 07:01

This question pertains to jqtouch which makes AJAX requests from regular anchor tags

查看更多
Animai°情兽
3楼-- · 2020-04-21 07:05

Take a look at the demo, in particular the "GET Example" under AJAX section. Essentially, you want to have the anchor element to link to a page which returns a "jQTouch page", i.e. <div id="pageID">...</div>.

So, in your case, you may have this anchor:

<a href="page.html" class="slide">Click</a>

And the page.html may be something like:

<div id="ajaxPage">
  <div class="toolbar"><h1>Title</h1></div>
  <div>
    <ul>
      <li>item 1</li>
      <li>item 1</li>
    </ul>
  </div>
</div>
查看更多
登录 后发表回答