//a标签
<a href="http://www.baidu.com" name="baidu">百度</a>
//jquery阻止默认事件
$("a[name='baidu']") .click(function( event ) {
event.preventDefault(); // 阻止默认事件
event.stopPropagation(); // 阻止冒泡
});
//解开
$("a[name='baidu']").unbind("click");
//a标签
<a href="http://www.baidu.com" name="baidu">百度</a>
//jquery阻止默认事件
$("a[name='baidu']") .click(function( event ) {
event.preventDefault(); // 阻止默认事件
event.stopPropagation(); // 阻止冒泡
});
//解开
$("a[name='baidu']").unbind("click");