jQuery用img包装img

前端之家收集整理的这篇文章主要介绍了jQuery用img包装img前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,如果类有锚,我试图用锚包装图像.

jQuery的:

if ( $(".views-row:has(a)").length) {
    var noderef = $(this).attr("anchor");
    $(".views-field-field-teaserBox-fid img").wrap("[anchor = "'+noderef+'" ]");
}

HTML:

<div class="view-content">
        <div class="views-row">

          <div class="views-field-field-node-ref-nid">
           <span class="field-content"><a class="active" href="/all-essentials-inspiring-events">All the essentials of inspiring events.</a></span>
         </div>

         <div class="views-field-field-teaserBox-fid">
            <span class="field-content"><img width="208" height="137" src="http://localhost:8888/sites/default/files/wedding_Giveaway_teaser.jpg?1283880578" alt="" class="imagefield imagefield-field_teaserBox"></span>
    </div>

另外,我应该使用双引号还是单引号?

解决方法

这个怎么样?
$("img.anchor").wrap('<a href="#" />');

ref:http://api.jquery.com/wrap/

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

猜你在找的jQuery相关文章