我有一个ajax请求
$.ajax({
url: url
dataType: 'html',
success: function(result) {
#I will received two different partials into this and i want to differentiate them.
# I am planning to differentiate them with div ids of the conatiners embedding the partials.
#If i use
if( $(result).find("#divid1").id =="divid1")
{
# do something with the partial.
}
else
{
# do something with second partial.
}
},
});
如果结果包含第二个部分。代码在if循环处停止。有没有办法检查结果是否包含特定的div id,如果没有在else块中做其他事情?
编辑::
Sry,如果我的问题不明确。我的ajax给我回复了HTML。但它不是html文件的总和,它是html文件的一部分(部分)。这部分是一个引导容器,里面有内容。我的目的是听到我希望将此部分添加到我视图中已存在的html中。所以我有可能在结果中将两个部分返回给Ajax,我想区分它们。