空时隐藏 div - 好的 div 调用

发布于 2024-12-15 07:31:34 字数 1040 浏览 0 评论 0原文

我无法调用正确的 div 进行隐藏。

下面是我的代码,如果 #block1 为空,我想隐藏 li#spect1。 例如,如果我调用上面的 div #tab1 它将隐藏,但 #block1 不会。

有人可以帮我吗?

<script type="text/javascript"> 
$j(function() {
if ($j("div#block1").html() == "") {
$j("li#spect1").hide();}
});
</script>

<div class="content_container">
<ul class="tabs">
<li id="spect1"><a href="#tab1">Title of tab</a></li>
</ul>
<div class="tab_container">

<div id="tab1">
<div id="block1"></div><!--if div is empy = hide-->
</div>

</div><!--end tab_container-->
</div><!--end content_container-->

EDIT

$J 用于在 Magento 平台上调用 jQuery 或简单的 $

div#block1为空时,隐藏li元素#spect1

当我将 #tab1 而不是 #block1 为空时,它会起作用,但我正在寻找一种调用 div#block1 的方法。这行不通,我不知道为什么。

I am having trouble calling the right div to hide.

Underneath is my code and I would like to hide li#spect1 if #block1 is empty.
If I call, for example, the above div #tab1 it will hide, but #block1 will not.

Can anybody help me please?

<script type="text/javascript"> 
$j(function() {
if ($j("div#block1").html() == "") {
$j("li#spect1").hide();}
});
</script>

<div class="content_container">
<ul class="tabs">
<li id="spect1"><a href="#tab1">Title of tab</a></li>
</ul>
<div class="tab_container">

<div id="tab1">
<div id="block1"></div><!--if div is empy = hide-->
</div>

</div><!--end tab_container-->
</div><!--end content_container-->

EDIT

$J is for calling jQuery or simple $ on the Magento platform.

When div#block1 is empty , hide li element #spect1.

It works when I put #tab1 instead of #block1 is empty, but I am searching a way to call div#block1. This won't work and I dont know why.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酒忠诚 2024-12-22 07:31:34

您还需要隐藏实际的块:

<script type="text/javascript"> 
$j(function() {
  if ($j("div#block1").html() == "") {
    $j("div#block1").hide();
    $j("li#spect1").hide();
  }
});
</script>

You need to hide the actual block as well:

<script type="text/javascript"> 
$j(function() {
  if ($j("div#block1").html() == "") {
    $j("div#block1").hide();
    $j("li#spect1").hide();
  }
});
</script>
离旧人 2024-12-22 07:31:34

也隐藏 tab1 div :

<script type="text/javascript"> 
$j(function() {
if ($j("div#block1").html() == "") {
$j("li#spect1").hide();
$j("#tab1").hide();
}
});
</script>

Hide the tab1 div too :

<script type="text/javascript"> 
$j(function() {
if ($j("div#block1").html() == "") {
$j("li#spect1").hide();
$j("#tab1").hide();
}
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文