如果链接本身使用jquery,隐藏链接图像?
有一个链接,旁边嵌入了一个链接图像。 如‘行驶方向+汽车图像’” 如果链接没有“行车方向”文本,则隐藏嵌入的护理图像图标。 你如何在 jquery 中做到这一点? 请某人?
<span class="website">
<a href="http://www.google.com">Visit My Website</a>
</span>
<img class="websiteimage" src="/Style Library/Images/design/icons/icon-www.png" alt="WebSite" />
所以基本上检查标签中是否有任何文本以及它是否为空隐藏 img 标签嵌入图片
there is a link and right next to it is a link image embedded.
Like 'driving direction + car image"'
if there is no 'driving direction' text for link, hide the care image icon embedded..
How do you do that in jquery??
please someone?
<span class="website">
<a href="http://www.google.com">Visit My Website</a>
</span>
<img class="websiteimage" src="/Style Library/Images/design/icons/icon-www.png" alt="WebSite" />
so basically check if a tag has any text in it and if its empty hide the img tag embedded pic
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道这是否有效,但我会尝试以下方法:
No idea if this works, but here's what I would try:
如果我是你,我会将整个内容包装在 div 或 span 中以赋予其某种连接。
然后你可以这样做:
这是在行动: http://jsfiddle.net/tomtheman5/vJYhK/
这个答案假设您将拥有多组这些链接/图像对。如果这个假设不正确,请忽略我;)
If I were you, I'd wrap the entire thing in a div or span to give it some sort of connection.
Then you can do this:
Here it is in action: http://jsfiddle.net/tomtheman5/vJYhK/
This answer is assuming that you're going to have multiple sets of these link/image pairs. If that assumption is incorrect, just ignore me ;)