a标签即增加了href下载包,也增加onclick这两个事件如何同时响应

解决方案 »

  1.   

    <a href="aa.rar" onclick="foo()">xxxxxxxx</a>
      

  2.   

    先是执行onclick,然后再是href。
    同时相应的话,可以把跳转写在onclick事件里。<!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <script type="text/javascript">
    tiaozhuan = function(url){
       //alert(url);
       window.location.href=url;
    }
    </script>
    </head><body>
    <a  onclick="javascript:tiaozhuan('http://www.baidu.com/')" style="cursor:pointer;">石狮市</a>
    </body>
    </html>