解决360/chrome浏览器打开Axure生成的html文件需要安装axure扩展的问题

用360/chrome浏览器打开Axure生成的html文件,会提示需要安装一个相应的Axure扩展才能正常使用。其实不用安装扩展,直接编辑index.html文件也行。用UE或者editplus(或者其他编辑器)打开index.html文件,ctrl+F搜索“chrome”的关键词,定位到以下代码:

            修改前:

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

修改后:

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

PS:就是把代码注释了

你可能感兴趣的:(Axure)