定义变量
在
$(".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();
});
});