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函数中使用了该源页面。)
答案 0 :(得分:5)
$(".ewPointer").removeAttr("onmousedown");
答案 1 :(得分:3)
$('.ewPointer').removeAttr('onmousedown');