我正在开发一个作为HTA实现的应用程序.我有一系列链接,我想在系统的默认Web浏览器中打开.使用< a href =“url”target =“_ blank”>无论默认浏览器如何,都会在IE中打开链接.
有没有办法使用默认浏览器?使用JavaScript是一种选择.
解决方法
创建一个shell并尝试运行URL.
这适用于我(保存为whatever.hta并执行它)在我的系统上.点击该按钮可在Firefox中打开Google:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>HTA Test</title> <hta:application applicationname="HTA Test" scroll="yes" singleinstance="yes"> <script type="text/javascript"> function openURL() { var shell = new ActiveXObject("WScript.Shell"); shell.run("http://www.google.com"); } </script> </head> <body> <input type="button" onclick="openURL()" value="Open Google"> </body> </html>