Hello everyone i just want to add <span>
after <a>
tag . This is the demo of adding <span>
tag inside the <a>
tag
demo之后添加标记
答案 0 :(得分:2)
您可以使用after
在选择器后添加元素。
$('a').after("<span>DEmo</span>");
演示:https://jsfiddle.net/tusharj/upbx2jv4/1/
在匹配元素集合中的每个元素之后插入由参数指定的内容。