如何迭代通过jquery ajax收到的html?

时间:2014-01-16 15:11:08

标签: jquery ajax

我有一个jquery ajax,它返回一些html作为数据。

success: function(data){
$('#ajaxresponse ul.display li input').each(function(index) {

ajax响应是来自jquery ajax成功数据的div。如何从响应中获取html?

2 个答案:

答案 0 :(得分:3)

您可以在jQuery中使用find()方法

success: function(data){
$(data).find('#ajaxresponse ul.display li input').each(function(index) {
  ........................
});

文档:http://api.jquery.com/find/

答案 1 :(得分:0)

你可以将它附加到你希望它去的html DOM中,然后像你现在一样做:

success: function(data){
$("#YourDiv").after(returnValue);
$('#ajaxresponse ul.display li input').each(function(index) {

其中returnValue是包含ajax返回的数据的var