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.
我想在跨度中的文本之后插入一些文本,如下所示。我想在 Tag1 之后添加 ×,例如“Tag 1 ×”。但是 × 在 之后</span>,这意味着在跨度之外。谢谢。
</span>
BTY,对标签的删除按钮有什么好的建议吗?
html:
<li><span>Tag 1</span></li>
jQuery:
$('li span').append('<p>×</p>');
var span = $('li span'); span.html(span.html() + '×');
这是你要找的吗?
如果您想在一行中执行此操作:
$(that).find('span')[0].innerHTML += '×';
$('li span').after('×');