天天看點

頁面重定向,看原型圖時總會跳轉到下載下傳軟體頁面解決方法

1.找到原型的index.html頁面

2.找到下面代碼

$(window).bind('load', function() {
                if(CHROME_5_LOCAL && !$('body').attr('pluginDetected')) {
                    window.location =   'resources/chrome/chrome.html';
                }
            });
           

3.将重定向代碼注釋掉,即改為

$(window).bind('load', function() {
                if(CHROME_5_LOCAL && !$('body').attr('pluginDetected')) {
                    // window.location =   'resources/chrome/chrome.html';
                }
            });
           

再次打開就不會了

繼續閱讀