先说下我面临的需求: vue项目中需要打开IE9版本的网页,想尽一切办法做vue兼容IE浏览器,发现vue至少兼容IE9以上,而且这种方式不太现实,所以想到解决办法就是: 可以在别的浏览器中打开IE去访问,我的做法如下:

    创建一个openIE.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"

双击运行后,超链接打开IE 

<a href="openIE://www.baidu.com">test</a>

此时可以打开IE,但是会发现有dom弹框,继续往下看:

链接: https://pan.baidu.com/s/1dxDvJtFG_j6iE_WxzZE6gQ 提取码: 679a

下载到桌面 alert.exe,双击运行即可解决弹出问题。


以上的步骤做完以后,在需要打开有参数的链接时,IE的地址栏总会丢失参数,导致页面加载失败,是不是遇到像我一样的问题呢? 继续往下看吧!

首先:

创建一个alert.reg文件,内容:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\alert]
@="URL:Alert Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\alert\DefaultIcon]
@="iexplore.exe,1"

[HKEY_CLASSES_ROOT\alert\shell]

[HKEY_CLASSES_ROOT\alert\shell\open]

[HKEY_CLASSES_ROOT\alert\shell\open\command]
@="\"C:\\Program Files\\WisoftAlert\\alert.bat\" \"%1\""

再次:

C:\Program Files 下创建 WisoftAlert文件夹,再C:\Program Files\WisoftAlert下创建alert.bat文件:

@echo off
set m=%1%
set m=%m:alert:=%
start "" "C:\\Program Files\\Internet Explorer\\iexplore.exe" %m%
exit

全部创建完毕后,双击alert.reg,将内容写入到注册表中,这时再次运行带有参数的链接,可以直接访问到了。

<a href="alert://www.baidu.com?query=123&b=2" />test

 

Logo

前往低代码交流专区

更多推荐