通常情况下,如下面所示,点击“录音列表”就会跳到http://www.baidu.com/audio/audio.html,
<td height="90"> <a href="http://www.baidu.com/audio/audio.html" >录音列表 </a> </td>
但是现在我想实现点击“录音列表”能够同时触发两个链接,比如http://www.baidu.com/audio/audio.html和http://www.google.com/audio/audio.php,请问该怎么实现?
再更深一层的说,其中http://www.google.com/audio/audio.php是个动态网页,我不想让前台用户看见,只是运行一下该文件,也就是说当用户点击“录音列表”的时候,后台运行的php文件,用户实际看到的是http://www.baidu.com/audio/audio.html,这又该如何实现?
把“录音列表”做成一个按钮,然后通过js触发函数
里头写两个window.open
通过js触发函数
引用 1 楼 bloomdeng 的回复:
把“录音列表”做成一个按钮,然后通过js触发函数
里头写两个window.open
楼上的能不能详细的说一说window.open怎么个用法?能不能只运行一个文件而不打开它?小弟初学,不是很熟悉这些用法,惭愧得很啊!
小试了一下,还是不行啊
学习了,
引用 5 楼 gooview 的回复:
采用框架模式,一个框架显示高度为0。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档 </title>
</head>
<script> var location=''; </script>
<frameset rows="0,*" frameborder="NO" border="0" framespacing="0">
<frame id=hidepage src="" name="topFrame" scrolling="NO" noresize>
<frame id=showpage src="page1.htm" name="mainFrame">
</frameset>
<noframes> <body>
</body> </noframes>
</html>
page1代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档 </title>
</head>
<script>
<!--
function ClickEvent()
{ parent.hidepage.location.href="http://www.baidu.com/audio/audio.html";
location.href="http://www.google.com/audio/audio.php";
}
-->
</script>
<body>
<a href=# onClick="ClickEvent()">录音列表 </a>
</body>
</html>
学习新知识了!