我有一个jquery ajax,它返回一些html作为数据。
success: function(data){
$('#ajaxresponse ul.display li input').each(function(index) {
ajax响应是来自jquery ajax成功数据的div。如何从响应中获取html?
答案 0 :(得分:3)
您可以在jQuery中使用find()
方法
success: function(data){
$(data).find('#ajaxresponse ul.display li input').each(function(index) {
........................
});
答案 1 :(得分:0)
你可以将它附加到你希望它去的html DOM中,然后像你现在一样做:
success: function(data){
$("#YourDiv").after(returnValue);
$('#ajaxresponse ul.display li input').each(function(index) {
其中returnValue是包含ajax返回的数据的var