【发布时间】:2016-11-25 01:38:44
【问题描述】:
我正在从 jquerymobile 1.2 迁移到 1.4.5
我的应用中每个页面的内容都以以下语法开头,
$("#DemoAccountRegistrationPage").live("pageshow", function() {
我已经能够弄清楚我需要将 .live 转换为 .on 以便上面成为每个页面参考
$("#DemoAccountRegistrationPage").on("pagecontainershow", function() {
但是我意识到上述格式仍然不符合 1.4.5,因此为什么内容没有加载
谁能给我正确的语法以便能够改变
$("#DemoAccountRegistrationPage").on("pagecontainershow", function() {
为了符合 1.4.5 的正确语法
我已经阅读了 jquery 文档,但不能完全理解正确的语法需要是什么(对 jquery mobile 来说非常新)
【问题讨论】:
标签: ios cordova jquery-mobile