jquery 2个函数间如何传值
例如:$(".left>dl>dt").click(function(){$(this).empty();$(this).after("<inputtype='text'...
例如:
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("<input type='text'/>");
$(":input").blur(function(){
var ivalue=$(this).val();
$(this).remove();
});
});
如何把
$(":input").blur(function(){
var ivalue=$(this).val();
$(this).remove();
});
里的ivalue传个父级
在父级里也能这个ivalue!
我最终想把这个值赋值给dt
$(this).append(value); 展开
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("<input type='text'/>");
$(":input").blur(function(){
var ivalue=$(this).val();
$(this).remove();
});
});
如何把
$(":input").blur(function(){
var ivalue=$(this).val();
$(this).remove();
});
里的ivalue传个父级
在父级里也能这个ivalue!
我最终想把这个值赋值给dt
$(this).append(value); 展开
1个回答
展开全部
定义变量
在
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("<input type='text'/>");
var tmp_var = null;
$(":input").blur(function(){
var ivalue=$(this).val();
tmp_var = ivalue;
$(this).remove();
});
});
在
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("<input type='text'/>");
var tmp_var = null;
$(":input").blur(function(){
var ivalue=$(this).val();
tmp_var = ivalue;
$(this).remove();
});
});
追问
我还没有失焦点就直接赋值了 这怎么办啊?
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("");
var tmp_var = null;
$(":input").blur(function(){
var ivalue=$(this).val();
tmp_var = ivalue;
$(this).remove();
});
$(this).append(value);
});
追答
onblur不是失去焦点之后才触发的吗?怎么可能没失去焦点就赋值了呢?
哦,你是想在失去焦点之后将值赋到$(".left>dl>dt")中是吧?
那就这样做:
$(".left>dl>dt").click(function(){
$(this).empty();
$(this).after("");
var _this= $(this).
$(":input").blur(function(){
var ivalue=$(this).val();
_this.html(ivalue);
$(this).remove();
});
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询