我有一个关于 jQuery 和 AJAX 的问题,我正在做这个 Ajax 调用:
jQuery.ajax({
url: url,
cache: false,
type: 'POST',
dataType: 'html',
success: function(data) {
console.log(jQuery(data));
}
});
当我在成功功能上
console.log(jQuery(data));
我得到这个值:
e.fn.e.init[136]
[0 … 10]
[11 … 21]
[22 … 32]
[33 … 43]
[44 … 54]
[55 … 65]
[66 … 76]
[77 … 87]
[88 … 98]
[99 … 109]
[110 … 120]
[121 … 131]
[132 … 135]
length: 136
__proto__: Object[0]
在获取此变量“数据”的 DOM 元素时,我需要知道:示例
jQuery(data).filter('#example');