标签: javascript jquery clear
目前我使用jQuery append()方法在html元素中添加文本。
append()
代码片段如下:
$(".email-address td:nth-child(1)").append("Hello");
如何清除我之前添加的文字?
先谢谢你。
答案 0 :(得分:12)
使用$("selector").text("Hello")代替
$("selector").text("Hello")