页面重定向,看原型图时总会跳转到下载软件页面解决方法

时间:2022-10-10 10:35:14

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';
                }
            });
再次打开就不会了