<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>点击一个链接同时打开两个页面</title> <script type="text/javascript"> function adClick(ad, site) { window.open(ad); window.location = site; } </script></head><body> <!--修改链接中的链接地址,前一个弹出新窗口或者新选项卡中打开,后一个链接在当前窗口打开 --> <a href="javascript:adClick('http://www.baidu.com', 'http://www.cnblogs.com/top5/archive/2010/10/25/1860561.html');">点击试试</a> <br> <br> <b>说明:</b>点击一个链接同时打开两个页面,前一个弹出新窗口或者新选项卡中打开,后一个链接在当前窗口打开</body></html>