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