jQuery 事件 - preventDefault() 方法 概述
jQuery 2022-06-01 12:08:05小码哥的IT人生shichen
jQuery 事件 - preventDefault() 方法
实例
防止链接打开 URL:
$("a").click(function(event){
event.preventDefault();
});
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
});
});
</script>
</head>
<body>
<a href="http://www.phpcodeweb.com/">phpcodeweb</a>
<p>preventDefault() 方法将防止上面的链接打开 URL。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
preventDefault() 方法阻止元素发生默认的行为(例如,当点击提交按钮时阻止对表单的提交)。
语法
event.preventDefault()
参数 | 描述 |
---|---|
event | 必需。规定阻止哪个事件的默认动作。这个 event 参数来自事件绑定函数。 |