在HTML如何修改代码以达到在点击超链接时默认以IE浏览器打开?
因为现在浏览器很多,导致一些我想实现的功能无法实现。如果我想实现默认以IE浏览器打开一个链接,但是不影响其他浏览器为默认浏览器的设置。...
因为现在浏览器很多,导致一些我想实现的功能无法实现。如果我想实现默认以IE浏览器打开一个链接,但是不影响其他浏览器为默认浏览器的设置。
展开
展开全部
这个应该是你在装浏览器的时候选择的默认浏览器设置,跟在HTML里写代码无关
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2016-07-30 · 知道合伙人互联网行家
关注
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"圆亮桥>
<!-- saved from url=(0014)about:internet -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title> </title>
<script language= "JavaScript">
function WinOpen()
{
window.open("http://www.126.com","newwindow","height=800,width=1000,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
}
</script>
<键乎/head>
<body>
<a href= "javascript:onclick=WinOpen() ";> 弹出窗口 </橘猛a>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml"圆亮桥>
<!-- saved from url=(0014)about:internet -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title> </title>
<script language= "JavaScript">
function WinOpen()
{
window.open("http://www.126.com","newwindow","height=800,width=1000,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
}
</script>
<键乎/head>
<body>
<a href= "javascript:onclick=WinOpen() ";> 弹出窗口 </橘猛a>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1. “工具”→“Internet选项”,在打开的窗口中选择“程序”选项卡,然后勾选“检查Internet Explorer是否搭枝晌为默认浏览器搭稿”,最后单击“确定”。
这样就可以了啊知锋。
为什么要在代码里面修改呢?
2. C#里面是可以的修改的
/// <summary>
/// 恢复IE为默认浏览器
/// </summary>
/// <returns></returns>
public static bool ResetIEDefaultBrowser()
{
string mainKey = @"http\shell\open\command";
string nameKey = @"http\shell\open\ddeexec\Application";
string IEPath = @"C:\Program Files\Internet Explorer\iexplore.exe";
bool result = false;
try
{
string value = string.Format("\"{0}\" -- \"%1\"", IEPath);
RegistryKey regKey = Registry.ClassesRoot.OpenSubKey(mainKey, true);
regKey.SetValue("", value);
regKey.Close();
regKey = Registry.ClassesRoot.OpenSubKey(nameKey, true);
regKey.SetValue("", "IExplore");
regKey.Close();
result = true;
}
catch
{
}
return result;
这样就可以了啊知锋。
为什么要在代码里面修改呢?
2. C#里面是可以的修改的
/// <summary>
/// 恢复IE为默认浏览器
/// </summary>
/// <returns></returns>
public static bool ResetIEDefaultBrowser()
{
string mainKey = @"http\shell\open\command";
string nameKey = @"http\shell\open\ddeexec\Application";
string IEPath = @"C:\Program Files\Internet Explorer\iexplore.exe";
bool result = false;
try
{
string value = string.Format("\"{0}\" -- \"%1\"", IEPath);
RegistryKey regKey = Registry.ClassesRoot.OpenSubKey(mainKey, true);
regKey.SetValue("", value);
regKey.Close();
regKey = Registry.ClassesRoot.OpenSubKey(nameKey, true);
regKey.SetValue("", "IExplore");
regKey.Close();
result = true;
}
catch
{
}
return result;
追问
一楼的,我说了呀,我的代码不想造成别人上网习惯的改变,我只要实现单独某个链接以IE浏览器方式打开。为什么我会这样说?
我具体想实现的功能是 我写了一个页面A,页面里面有个链接,这个链接用于跳转到另外一个页面B,且跳转过去后屏蔽浏览器的菜单栏。在IE中已经实现,但是如果默认是360安全浏览器,当点击链接,会自动新建标签,达不到我想要的效果。就是这样,所以我才想链接默认以IE浏览器打开!
追答
你用js去实现C#那段代码吧。。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询