使用wrap()和wrapInner()方法包裹元素和内容
wrap()和wrapInner()方法都可以进行元素的包裹,但前者用于包裹元素本身,后者则用于包裹元素中的内容,它们的调用格式分别为:
$(selector).wrap(wrapper)和$(selector).wrapInner(wrapper)
参数selector为被包裹的元素,wrapper参数为包裹元素的格式。
- <body>
- <h3>使用wrapInner()方法包裹元素</h3>
- <span class="red" title='a bit sleepy'>我有点困了。。</span>
- <script type="text/javascript">
- $(".red").wrapInner("<i></i>");
- </script>
- </body>
- <html>
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-13-474-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-13-474-1.html