0

我有一个图像通过插件在我的页面上显示为背景,我试图在页面其他位置的 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 中输出“标题文本”的东西吗?

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

非常感谢任何帮助。

4

2 回答 2

2

尝试这个:

$('.inner-quote').html($('#myatu_bgm_top').prop('alt'));
于 2013-09-09T11:12:44.277 回答
0

尝试这个:

$(".inner-quote").html($("#myatu_bgm_top").attr("alt"));
于 2013-09-09T11:14:48.327 回答