在 qwerty.php 中,我可以使用 ajax 加载 test.php,我还想操作成功函数中加载的数据,但它似乎不起作用。
在 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>
所以我的数据在“qwerty”之前正确加载div
但是当我点击“test1”时没有任何反应。