Jquery Mobile and 404 Pages

本文关键字:Pages and Mobile Jquery | 更新日期: 2023-09-27 18:18:26

我正在使用Jquery Mobile,我想知道从显示中删除错误对话框并将用户发送到实际错误页面的最佳方法。

谢谢你的帮助

马特

Jquery Mobile and 404 Pages

超载$.mobile.pageloadfailed功能

例如:

$( document ).bind( "pageloadfailed", function( event, data ){
    // Let the framework know we're going to handle things.
    event.preventDefault();
    // Change the page
    if(!$.mobile.changePage('404.html')){
        // If it fails, call reject
        data.deferred.reject( data.absUrl, data.options );
    }
});

jQuery Mobile docs