English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
jQueryevent.preventDefault()方法
event.preventDefault()方法可防止浏览器执行所选元素的默认操作。
例如:
阻止链接跟随URL
阻止提交按钮提交表单使用event.isDefaultPrevented()
语法:
实例
阻止链接打开URL: $("#submit").click(function(event){ event.preventDefault();});
$("a").click(function(event){
示例 $("#submit").click(function(event){ event.preventDefault();});
参数值 | 参数 |
---|---|
描述 | event该事件 |