我有这段代码:
$(document).bind('pagebeforeshow', function(e, data) {
e.preventDefault();
jQuery.mobile.pageContainer.pagecontainer({
beforeload: function( event, ui ) {
if (ui.toPage.indexOf('welcome') != -1) {
$("head link#styleSheets").attr("href", styles_2.css');
} else {
$("head link#styleSheets").attr("href", 'styles.css');
}
}
});
});
请注意,在呈现页面之前会更改样式表。它工作得很好。除了它不能与后退按钮一起使用。
我试图解决这个问题。到目前为止没有任何作用。