لا يمكن الحصول على معالج نقرة jQuery لإطلاق النار على عنصر محمّل AJAX

StackOverflow https://stackoverflow.com/questions/2146661

  •  23-09-2019
  •  | 
  •  

سؤال

يستخدم "myparentpage.htm" وظيفة تحميل jQuery للتحميل ('mydiv.htm') //

mydiv.htm يحتوي فقط على:

<a href="#" class="bt-cbox">Click me</a>

لدي ما يلي في "myparentpage.htm"

$(document).ready(function() {    
    $(".bt-cbox").click(function() {    
        alert("handler hit");
    });
});

لماذا لم يتم ضرب التنبيه الخاص بي

هل كانت مفيدة؟

المحلول

$(document).ready(function() {
    $(".bt-cbox").live("click",function() {
        alert("handler hit");
    });
});

يرى يعيش

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top