jquery的ajax方法,在返回中,find方法不起作用

Posted sharestone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的ajax方法,在返回中,find方法不起作用相关的知识,希望对你有一定的参考价值。

var loadProjectList = function () {
$.ajax({
cache: false,
method: "POST",
url: "/Mobile/ProjectList",
//url: "http://192.168.1.102:8084/a.html",
data: seacher,
// dataType: "html",
success: function (res) {
//var x = \'<div><div id="listPage"><span>sss</span></div></div>\';
//alert($(res).find("#listPage").text());
//console.log($(res).find("#listPage"));
$(\'#listPage\').html($(res).find("#listPage").html());
},
});
}

就这个小问题,居然困扰了我一天。。。。记录下来

listPage是页面body下的一个节点,ajax请求本页面,请求成功后,通过$()方法转换为jquery对象,listPage的html()方法总是返回undefined

只需要在listPage外面添加一个div包裹住就可以了,

 

以上是关于jquery的ajax方法,在返回中,find方法不起作用的主要内容,如果未能解决你的问题,请参考以下文章

来自 .ajax() 调用的数据的 jQuery .find() 返回未定义

jquery中获取ajax返回数据的方法

在Controller中使用Jquery ajax调用ActionResult方法并返回数据

jquery ajax中支持哪些返回类型以及js中判断一个类型常用的方法?

简单的 JsonResult 在 Jquery ajax 方法上返回 parsererror

mvc中的ajax jquery-方法返回不是布尔类型的True [重复]