JQuery没有意识到选择器中发生了什么

时间:2015-08-22 04:07:38

标签: javascript jquery ruby-on-rails ajax coffeescript

jQuery ->
  $(".comment-form, .reply-form")
    .on "ajax:beforeSend", (evt, xhr, settings) ->
      debugger;
      $(this).find('textarea')
        .addClass('uneditable-input')
        .attr('disabled', 'disabled');
    .on "ajax:success", (evt, data, status, xhr) ->
      debugger;
      $(this).find('textarea')
        .removeClass('uneditable-input')
        .removeAttr('disabled', 'disabled')
        .val('');
      debugger;
      $(data.comments).hide().insertAfter($(this)).show('fast')

这应该在.comment-form.reply-form div中发生某些事情时运行。但是,代码仅在.comment-form中发生某些事情时运行。

页面加载时会显示.comment-form div,但只有在单击“回复”按钮时才会显示.reply-form div。我认为这可能是问题 - 页面加载时.reply-form不存在,所以当它实际显示时,JQuery不会识别它。我该如何解决这个问题?

3 个答案:

答案 0 :(得分:3)

以下是处理动态元素的侦听器的方法(例如,在就绪事件之后)。

//Use delegation
$('#delegationparent').on('click', 'div', function(){
  $('#results').html('Delegated div.');
  });
//Insert new div (didn't exist before)
$('<div>Delegate Div</div>').appendTo('#delegationparent');

//No delegate
//Create Div
var div = $('<div>No Delegate Div</div>');
//Attach handler to div
div.on('click', function(){
  $('#results').html('No delegated div');
  });
//Insert Div
div.appendTo('#nodelegate');
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="delegationparent"></div>
<div id="nodelegate"></div>
<pre id="results"></div>

答案 1 :(得分:2)

使用delegation向尚未出现的元素添加事件。

$('body').delegate('.comment-form, .reply-form', 'ajax:beforeSend', function (e, xhr, settings) {
  $(this).find('textarea')
    .addClass('uneditable-input')
    .attr('disabled', 'disabled');
});

答案 2 :(得分:1)

$(document).on( events , selector , data )

事件将是ajax:beforeSend和ajax:success       选择器将是.comment-form,.reply-form       数据将是(evt,xhr,设置)和(evt,data,status,xhr)

如果您的代码以上述格式重写,请告诉我吗?

没有注意到MinusFour在上面的帖子中发表了评论。