`
maxiow
  • 浏览: 13265 次
文章分类
社区版块
存档分类
最新评论

阻止页面元素默认行为发生的方式

阅读更多
1. javascript:void(0)
如<input> type为submit时,<form> action属性设置为 javascript:void(0)
或<a>  href属性设置为 javascript:void(0)

2. event.preventDefault()
$('input#testbtn').click(
    function($e) {
        $e.preventDefault();
    }
);

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics