如何从谷歌跳转IE,打开指定的网址

  • 项目需求:Skyline地图页面只能IE浏览。

    • 参考地址
    • reg注册方法

html ( jquery注意记得引入 )

 
    
        
            
            Title
            
            
        
        
            
跳转IE浏览器

新建文件(复制下面代码,最后一行改为自己的IE执行地址,就是exe文件路径),将文件另存为,修改后缀为reg

    Windows Registry Editor Version 5.00
 
[HKEY_CLASSES_ROOT\openIE]
@="URL:OpenIE Protocol"
"URL Protocol"=""
 
[HKEY_CLASSES_ROOT\openIE\DefaultIcon]
@="iexplore.exe,1"
 
[HKEY_CLASSES_ROOT\openIE\shell]
 
[HKEY_CLASSES_ROOT\openIE\shell\open]
 
[HKEY_CLASSES_ROOT\openIE\shell\open\command]
@="cmd /c set m=%1 & call set m=%%m:openIE:=%% & call \"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %%m%% & exit"

找到刚才新建的文件,鼠标右键 ==》合并 ==》是 ==》 确定,成功之后,打开html页面就可以了

1.jpg
2.jpg

你可能感兴趣的:(如何从谷歌跳转IE,打开指定的网址)