$(function(){
$(".sv_content").click(function(){
if($(this).find(".sv_input").attr("type") == "text"){return false;}
var name = $.trim($(this).html());
var m = $.trim($(this).text());
$(this).html("<input type=text value=\""+name+"\" class=\"sv_input\">");
$(this).find(".sv_input").focus();
$(this).find(".sv_input").bind("blur", function(){
var n = $.trim($(this).val());
if(n != m && n != ""){
$(this).parent().html(n);
}else{
$(this).parent().html(name);
}
});
});
});
转载于:https://my.oschina.net/daladida/blog/838483