在页面上的div中显示图像alt文本

时间:2013-09-09 11:10:34

标签: jquery css image alt

我的图片通过插件在我的页面上显示为背景,我正在尝试在页面上其他位置的DIV中显示该图像的ALT文本。

以下是即将发布的代码:

<!-- Background Manager Start -->
<div id="myatu_bgm_img_group" class="myatu_bgm_fs" style="overflow: hidden;"><script type="text/javascript">
    /*<![CDATA[*/
        try{(function(a){myatu_bgm.addTopImage("",function(){if((typeof myatu_bgm!=="undefined")&&(myatu_bgm.initial_ease_in==="true")){a(this).fadeIn("slow")}else{a(this).show()}})}(jQuery))}catch(e){};
    /*]]>*/
    </script><noscript><img id="myatu_bgm_top" class="myatu_bgm_fs" src="http://mgrezova.webfactional.com/wp-content/uploads/2013/06/agnesbshirt.jpg" alt="Caption Text"   /></noscript></div>
<!-- Background Manager End -->

有人可以建议使用javascript或其他内容,以便在下面的DIV中输出“Caption Text”吗?

<DIV class="quote">
    <DIV class="inner-quote">
    </DIV>
</DIV>

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

试试这个:

$('.inner-quote').html($('#myatu_bgm_top').prop('alt'));

答案 1 :(得分:0)

试试这个:

$(".inner-quote").html($("#myatu_bgm_top").attr("alt"));