前端之家收集整理的这篇文章主要介绍了
将div转换为h2 span jQuery,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个
生成标题动态
标题的div
<div class="title">dynamic content</div>
我想像这样改造它:
<h2 class="title"><span>dynamic content</span></h2>
这在jQuery中是可行的吗?
这应该做到这一点.
$('div.title').replaceWith(function() {
return $('<h2>').addClass('title').append($('<span>').text($(this).text()));
});
http://jsfiddle.net/uPFUu/
原文链接:https://www.f2er.com/css/215153.html