禁用<a>点击事件

来源:互联网 发布:huaweinexus网络 编辑:程序博客网 时间:2024/06/03 02:25
$('a').live('click', function(event) {
  event.preventDefault();   
});
0 0