event.preventDefault()方法的使用

来源:互联网 发布:淘宝抢购软件 编辑:程序博客网 时间:2024/06/05 23:58
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("a").click(function(event){
    event.preventDefault();
  });
});
</script>
</head>
<body>
<a href="http://w3school.com.cn/">W3School</a>
<p>preventDefault() 方法将防止上面的链接打开 URL。</p>
</body>
</html>
阻止表单提交时,和return false;作用一样
0 0