在I.E.强制链接在Firefox中打开

时间:2017-04-25 16:01:00

标签: javascript html

我在企业内部网站点中有两个链接,内置在Sharepoint中,我需要链接到Firefox。链接指向在I.E.中不起作用的外部站点。但是,企业浏览器是I.E.,这是大多数人看到的。

我发现以下代码在我有一个链接时有效。如何让它适用于两个链接?

以下是代码:

<!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>

1 个答案:

答案 0 :(得分:1)

您可以将脚本修改为:

<script type="text/javascript">
function openURL(url)
{
    var shell = new ActiveXObject("WScript.Shell");
    shell.run(url);
}
</script>
</head>
<body>

<input type="button" onclick="openURL('http://www.google.com')" value="Open Google">
<input type="button" onclick="openURL('http://www.yahoo.com')" value="Open Yahoo">