Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
html需要一个参数''来删除文本。喜欢a.html(''); 你也可以使用empty。a.empty();
html
''
a.html('');
empty
a.empty();
a如果您只想删除之前small使用的内容,上面的代码将删除里面的所有内容find。 a.find('small').empty();
a
small
find
a.find('small').empty();