$(this)在ajax中无效的解决方案

Posted 仔仔爱学习

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$(this)在ajax中无效的解决方案相关的知识,希望对你有一定的参考价值。

在ajax方法里写$(this)指向的是最近调用它的jquery对象,所以这里的$(this)指的是ajax对象,而不是$(".enter_caozuo").find(".gd"),要想解决这个问题,就需考虑增加一个中间变量传递这个对象,示例:
$(".enter_caozuo").find(".gd").click(function(){
var mythis = $(this);

$.ajax({
type:"GET",
url:"lanEdit.php?lanname="+lan_name,
success:function(msg){
var info = eval(‘(‘+msg+‘)‘);
var state = info.state;
mythis.parents(".yuan").siblings(".more").find(".lanname").val(info.name);
//....你的代码

}














以上是关于$(this)在ajax中无效的解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Ajax中Put和Delete请求传递参数无效的解决方法(Restful风格)

ajax请求跳转无效的解决方案及其安全隐患

ajax用get刷新页面元素在IE下无效解决~~

07. ajax请求,解决sendRedirect 无效

AJAX请求返回HTTP 400 错误 - 请求无效 (Bad request)

Ajax异步获取html数据中包含js方法无效的解决方法