javascript event.preventDefault()

定义和用法
preventDefault() 方法阻止元素发生默认的行为(例如,当点击提交按钮时阻止对表单的提交)。

 

语法
event.preventDefault()
event 规定阻止哪个事件的默认动作。这个 event 参数来自事件绑定函数。

 

示例

<html>
<script type="text/javascript" src="jquery-1.10.1.min.js"></script>
  
	  <script type="text/javascript">
	  $(document).ready(function(){
		   $("a").click(function(event){ //防止链接打开url
		   	  event.preventDefault();
		   	});
		});
	</script>
	
 	<body >
	   <a href='http://www.baidu.com'>打开超链接</a>
	</body>
</html>

 

上面的示例中,点击“打开超链接”,页面不会发生跳转。

你可能感兴趣的:(JavaScript)