在<a> tag using Jquery

时间:2015-06-01 15:11:41

标签: php jquery html css

Hello everyone i just want to add <span> after <a> tag . This is the demo of adding <span> tag inside the <a> tag

demo之后添加标记

1 个答案:

答案 0 :(得分:2)

您可以使用after在选择器后添加元素。

$('a').after("<span>DEmo</span>");

演示:https://jsfiddle.net/tusharj/upbx2jv4/1/

  

在匹配元素集合中的每个元素之后插入由参数指定的内容。

文档:http://api.jquery.com/after/