用js判断div里的href内容如果为空这个链接就不显示,js怎么写
<divid="showArea"><ahref="{dede:fieldname="litpic"/}"rel="zoom1"rev="{dede:fieldname=...
<div id="showArea">
<a href="{dede:field name="litpic"/}" rel="zoom1" rev="{dede:field name="litpic"/}"><img src="{dede:field name="litpic"/}" /></a>
<a href="{dede:field name='litpic1'/}" rel="zoom1" rev="{dede:field name='litpic1'/}" ><img src="{dede:field name='litpic1'/}"/></a>
<a href="{dede:field name='litpic2'/}" rel="zoom1" rev="{dede:field name='litpic2'/}"><img src="{dede:field name='litpic2'/}" /></a>
</div>
href的内容是动态生成的,链接里有个img标签,如果href内容为空就不需要显示这个链接了,要不然图片显示的是个红X 展开
<a href="{dede:field name="litpic"/}" rel="zoom1" rev="{dede:field name="litpic"/}"><img src="{dede:field name="litpic"/}" /></a>
<a href="{dede:field name='litpic1'/}" rel="zoom1" rev="{dede:field name='litpic1'/}" ><img src="{dede:field name='litpic1'/}"/></a>
<a href="{dede:field name='litpic2'/}" rel="zoom1" rev="{dede:field name='litpic2'/}"><img src="{dede:field name='litpic2'/}" /></a>
</div>
href的内容是动态生成的,链接里有个img标签,如果href内容为空就不需要显示这个链接了,要不然图片显示的是个红X 展开
1个回答
展开全部
jquery:
$.each($('#showArea a'),function(){
if($(this).attr('href')==''){
$(this).hide();
}
})
$.each($('#showArea a'),function(){
if($(this).attr('href')==''){
$(this).hide();
}
})
更多追问追答
追问
大神 能不能详细一点呀,我是新手 囧
追答
引入jquery然后用上面的代码
加在你想要执行的地方呀。
比如说有个按钮 点下以后执行
$(function(){
$('#hideA').click(function(){
$.each($('#showArea a'),function(){
if($(this).attr('href')==''){
$(this).hide();
}
});
});
})
这样 点了隐藏按钮a标签就隐藏了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询