ajax 呼叫在电话间隙无法正常工作,如何处理?

发布于 2024-12-28 12:36:39 字数 414 浏览 1 评论 0原文

我有一个更改页面的函数:

...
success: function (data) {
    if (data  == 1 ) {
           $.mobile.changePage( "second.html", { transition: "slideup"} );
   } else {
        showConfirm();
   }
}, 
...

second.html 上,我有一个 ajax 调用,可以从 php 文件加载一些数据。

如果我转到 Second.html ,我会得到结果,但如果我使用 $.mobile.changePage... 到达那里,我不会得到结果,

你知道需要做什么吗?是否需要再次初始化某些东西?

i have a function that changes the page:

...
success: function (data) {
    if (data  == 1 ) {
           $.mobile.changePage( "second.html", { transition: "slideup"} );
   } else {
        showConfirm();
   }
}, 
...

on second.html i have a ajax call that loads some data from a php file.

if i go to second.html i get the results but not if i get there by using the $.mobile.changePage...

any idea what needs to be done? does something need to be initialized again?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§对你不离不弃 2025-01-04 12:36:39

这是 jQuery Mobile 的一项功能。 Changepage 事件不会:

  • 加载整个页面
  • 执行新页面上可能存在的任何 javascript

它只是将加载的 html 转储到当前页面上的新 div 内。

将所有 JavaScript 从 secondary.html 移至 pageshow 事件内的索引页,应该可以解决问题。

希望这有帮助。

This is a feature of jQuery Mobile. The changepage event doesn't:

  • load the whole page
  • execute any javascript that may be on the new page

It just dumps the loaded html inside a new div on the current page.

Move all your javascript from second.html to the index page inside a pageshow event and that should do the trick.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文