如何在jQuery中动态添加anchor / href

前端之家收集整理的这篇文章主要介绍了如何在jQuery中动态添加anchor / href前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是jQuery的新手,我正在尝试将我的所有手机类转换成带有href的锚:

是)我有的

<div class="phone">111-111-1111</div>
<div class="phone">666-555-4444</div>

我想要的是

<div class="phone"><a href="tel:111-111-1111">111-111-1111</a></div>
<div class="phone"><a href="tel:666-555-4444">666-555-4444</a></div>

我想做这样的事情,但我很遗憾:

$('.phone').each(function(){
  $(this).wrapInner('<a name="???' + $(this).html() + '" />');
});

解决方法

我认为解决方案只在你的问题中…

看看这个.

$('.phone').each(function(){
    $(this).wrapInner('<a href="tel:' + $(this).html() + '" />');
});​

FIDDLE希望这就是你想要的.

原文链接:https://www.f2er.com/jquery/177136.html

猜你在找的jQuery相关文章