$(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风格)