qwerty.php では、test.php を ajax でロードできます。また、success 関数にロードされたデータを操作したいのですが、うまくいかないようです。
qwerty.php で私のコードは
<div class="qwerty">qwerty</div>
<script src="jquery.js"></script>
<script>
$(function(){
$.ajax({
type: 'GET',
url: 'test.php',
success: function(data, textStatus, jqXHR) {
$(data).find('.test1').click(function(){$(this).toggle();});
$('.qwerty').before(data);
}
});
});
</script>
そしてtest.phpには次のものがあります:
<div class="test1">test1</div>
<div class="test2">test2</div>
div
私のデータは「qwerty」の前に正しくロードされますが、「test1」をクリックしても何も起こりません。