first I use $.ajax to load html code in my html page
for(var i=0;i<5;i++)
{
$.ajax({
type: "get",
url: "test.xml",
async: false, //without set the async to false could cause problem,I also don't konw why
dataType: "html",
timeout: 2000,
success: function (xml) {
var $temp_code = $(xml).find("test[id='" + i+ "']").find("html_code").html();
//the html code is like <div class="test"></div>……
$($temp_code).appendTo($(".wrapper")).show();
});
}
The code could work alright in page ,html code in xml could be read properly .Then I want give each "test" div bind a click function
like
$(".test").click(function () {
alert("");
});
but this could not success,click each "test" alert nothing
then I try to put it into $.ajax complete like:
$.ajax({
……
complete:function(){
$(".test").click(function () {
alert("");
});
}
})
This could only work for the first "test" div ,it means only click the first "test" could alert
How can I solve this problem?Let the click work in each "test",
Thank you!