如果有图像,我需要根据文本显示/隐藏文本

时间:2014-06-17 20:28:43

标签: javascript jquery html

提前谢谢你。当img标记的src属性中有内容时,我需要显示文本。我需要一些能够检测某个属性是否包含内容的JS,如果它确实有一个p标签可见。

html

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <script type='text/javascript' src="SampleJS.js"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>

    <body>
    <p id="sponsorText">Now you see me!<img src="" class="sponsorImg" id="sponsorText" /></p>

    </body>
    </html>

JS

var attr = $().attr('src');

if (typeof attr !== "" && attr !== false){
    alert('no image.');
    }

但是在这一点上我甚至无法让JS检测并发出警报。

我需要Jscript来检测是否有filename.jpeg,如果有,则触发文本。

1 个答案:

答案 0 :(得分:1)

首先包含jQuery。

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

其次,将脚本创建为

$(document).ready(function () {
    // code here..
});

第三,你需要提供一个选择器来处理。

var attr = $('img').attr('src'); // add img element 

现在可以使用了。