我似乎在以编程方式打开和关闭 JQM 1.3 面板时遇到问题。
编辑:这是针对 JQM 1.3.x 而不是 1.4+
这有点难以解释,所以我只是做了一个小提琴:)
小提琴中发生了很多事情,但它只是一个更大的应用程序的示例,并传达了问题。
如何复制:
- 去小提琴
- 在小提琴上打开面板并转到第二页
- 在第二页打开面板并转到第一页
- 现在尝试在第一页打开面板,它什么也不做。
受影响的浏览器:
编辑:这似乎已在 Chrome 30.0.1599.101 m 中修复
- 铬 28.0.1500.95 m
- IE 10.0.9200.16635
- Safari // 最新版本
- 安卓网页视图(4.2.2)
不受影响的浏览器:
- 火狐 23
- 歌剧 12.16
小提琴链接:
链接到其他帖子
https://github.com/jquery/jquery-mobile/issues/6308
http://forum.jquery.com/topic/panel-not-responding-after-page-change
编辑:所以 Firefox 给了我一个 Chrome 或 IE 都没有的错误。
当我单击返回第一页时,我得到:
Type Error: elem is undefined
该错误是由 JQ 1.9.1 引发的,我将其追溯到:
A method for determining if a DOM node can handle the data expando
acceptData: function( elem ) {
// Do not set data on non-element because it will not be cleared (#8335).
if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) {
return false;
}
var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
// nodes accept data unless otherwise specified; rejection can be conditional
return !noData || noData !== true && elem.getAttribute("classid") === noData;
}
`
注意:
不要在非元素上设置数据,因为它不会被清除 (#8335)。
Github问题链接: https ://github.com/jquery/jquery/pull/1232
OG代码:
$('.showMenu').on('click', function(){
$.mobile.loading('hide');
$.mobile.activePage.find('#'+$.mobile.activePage.attr('id')+'P').panel("toggle");
});
$('.btnMenuItem').on('click', function(event){
myPgActions.nav(event, function(target){
$.mobile.changePage(target);
}, false);
});
var myPgActions = {};
myPgActions = {
nav: function(event, callback, manualHash){
var PID = $.mobile.activePage.attr('id'),
target = (!!event) ? event.target.name : manualHash;
$("#"+PID+"P").panel( "close" );
if(PID != 'loading') $("#"+PID+"Iframe").hide();
if(PID == target){
$("#"+PID+"Iframe").hide('fast', function(){
$("#"+PID+"Iframe").attr('src', "");
myPgActions.update(PID, target, 'refresh', function(target){
callback(target)
});
});
}else{
this.update(PID, target, 'change', function(target){
callback(target);
});
}
},// end get
update: function(PID, target, type, updateCallback){
var ifReady = $.Deferred();
if(type == 'refresh'){
this.buildUrl(PID, function(url){
$('#'+PID+'Iframe').attr( 'src', url);
ifReady.resolve();
$.when(ifReady).then(function(){
updateCallback('#'+PID+'Iframe')
});
});
}else if(type == 'change'){
this.buildUrl(target, function(url){
$('#'+target+'Iframe').attr( 'src', url);
ifReady.resolve();
});
$.when(ifReady).then(function(){
updateCallback('#'+target);
});
}
}, // end set
buildUrl: function(page, buildCallback){
switch(page){
case 'dash':
var mobileSiteUrl = 'URL with options for iframe'
setTimeout(function(){buildCallback(mobileSiteUrl);},25);
break;
case 'local':
var mobileSiteUrl = 'URL with options for iframe'
setTimeout(function(){buildCallback(mobileSiteUrl);},25);
break;
}// End Switch
}
}// End Obj