最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jquery: Replace onclick event - Stack Overflow

programmeradmin0浏览0评论

I have the following code:

  $('#tableA').find("#expand_" + row_id).prop("onclick", null);
  $('#tableA').find("#expand_" + row_id).prop("onclick", 'expandAndShow('+row_id+')');
  $('#tableA').find("#expand_" + row_id).removeClass('icon-plus-sign');
  $('#tableA').find("#expand_" + row_id).addClass('icon-ok-sign');

I wanted to replace previously linked onlick method with new one. It is not working. However, removeClass and addClass is working well. Am I missing anything?

I have the following code:

  $('#tableA').find("#expand_" + row_id).prop("onclick", null);
  $('#tableA').find("#expand_" + row_id).prop("onclick", 'expandAndShow('+row_id+')');
  $('#tableA').find("#expand_" + row_id).removeClass('icon-plus-sign');
  $('#tableA').find("#expand_" + row_id).addClass('icon-ok-sign');

I wanted to replace previously linked onlick method with new one. It is not working. However, removeClass and addClass is working well. Am I missing anything?

Share Improve this question asked Nov 18, 2013 at 11:03 nebulanebula 4,00213 gold badges55 silver badges83 bronze badges 1
  • use .attr() to rebind inline script or better just bind/unbind all events using jquery – A. Wolff Commented Nov 18, 2013 at 11:08
Add a ment  | 

2 Answers 2

Reset to default 5

To remove an inline attribute using jQuery:

$('#tableA').find('#expand_' + row_id).removeAttr('onclick');

Does just that, yet, for IE < 9, you should use:

.prop('onclick', null);

As explained in the docs.
I do wonder, however, why you're using find with an ID selector. I believe I'm right in saying find returns an array of jQ objects. Not a single DOM object.
Perhaps:

$('#expand_' + row_id).prop('onclick', null);

is a better fit. To replace the onclick attribute with another one, you shouldn't need 2 prop calls, by the way:

$('#expand_' + row_id).prop('onclick', 'expandAndShow('+row_id+')');

basically removes the original onclick handler, by setting another handler. All in all, this kind of thing is best done using delegation:

$('#tableA').on('click', '*[id^=expand_]', function()
{
    alert($(this).attr('id').replace('expand_',''));
});

This code handles all click events, on all child elements of the #tableA element, that have an id, beginning with expand_. I then proceed to alert that id, without the expand_ substring.

This should work

$('#tableA').find("#expand_" + row_id).unbind('click');
$('#tableA').find("#expand_" + row_id).on('click',expandAndShow(row_id));
发布评论

评论列表(0)

  1. 暂无评论