puzi0315
<head>
 <title></title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <!--   引入jQuery -->
<script src="http://www.cnblogs.com/scripts/jquery-1.3.1.js" type="text/javascript"></script>
 <script>
$(function(){
 $("a").click(function(event) {
   alert(event.type);//获取事件类型
   return false;//阻止链接跳转
 });
})
  </script>
</head>
<body>
<a href=\'http://google.com\'>click me .</a>
</body>
</html>

分类:

技术点:

相关文章:

  • 2022-02-13
  • 2022-02-09
  • 2022-12-23
  • 2021-09-12
  • 2021-06-30
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
猜你喜欢
  • 2021-12-12
  • 2021-12-12
  • 2021-11-18
  • 2021-12-12
  • 2022-12-23
  • 2022-02-09
相关资源
相似解决方案