第一次点击thisNode正常,第二次点击,thisNode会是两个对象,三次就是三个,是什么问题?
$("#name,#qq,#tel,#email").click(function() {
var thisNode = $(this).find(".name");
console.log("-----");
console.log(thisNode);
console.log("-----");
// var text = $(thisNode).text();//默认值
// var bt = $(this).find(".bt").text();//标题
$(".edit-mask,.edit_form .text").show();
// $(".edit-title").text(bt);
// $(".edit_form .text").val(text);
$(".edit_form .ok").click(function() {
// text = $(".edit_form .text").val();
// console.log(text);
console.log(thisNode);
// $(thisNode).text(text);
$(".edit-mask,.edit_form .text").hide();
})
$(".edit_form .cl").click(function() {
$(".edit-mask,.edit_form .text").hide();
})
})
相关分类