如何使用jQuery禁用onmousedown函数?

时间:2011-09-01 03:07:41

标签: javascript jquery

HTML:< td class="ewPointer" onmousedown="ew_Sort(event,'sampple.asp?order=brgy%5Fid&ordertype=ASC',1);">

我只想禁用onmousedown函数并将其替换为我的jquery函数。

我使用了这段代码,但没有用。

$('.ewPointer').live('click',function(e) {e.preventDefault(); });

有办法吗?

由于

(我在我的ajax函数中使用了该源页面。)

2 个答案:

答案 0 :(得分:5)

$(".ewPointer").removeAttr("onmousedown");

http://jsfiddle.net/SZaw5/

答案 1 :(得分:3)

$('.ewPointer').removeAttr('onmousedown');