如果是用$("#txt_abc").val("");
那么会发现$("#txt_abc").append("xxx");一点效果都没有
解决:
$("#txt_abc").empty();
$("#txt_abc").append("xxxx");
这样就可以了。