如果文本为0,则JavaScript隐藏DIV标记

时间:2015-01-23 12:26:24

标签: javascript jquery trim

我有问题。如果text为0,我正试图隐藏div。我的代码是:

<script type="text/javascript">
    $(function () {
        if ($(".notification-counter").text() == "0") {
            $(".notification-counter").hide();
            $(".notification-container").hide();
        }
    });
</script>

<div class="dropdown nav-search pull-right <?php $this->_c('login') ?>">
    <a href="../pm/" class="dropdown-toggle"><i class="fa fa-inbox"></i>
        <div class="notification-container">
            <div class="notification-counter">
                <?php
                      jimport( 'joomla.application.module.helper' );
                      $module = JModuleHelper::getModule('mod_uddeim_simple_notifier');
                      echo JModuleHelper::renderModule( $module, $attribs );
                ?>
            </div>
        </div>                                  
    </a>    
</div>

但它不起作用......任何人都可以提供帮助吗?谢谢你的回答!

5 个答案:

答案 0 :(得分:4)

尝试使用parseInt()将数字与数字进行比较而不是比较文字字符串(它可以缓解空白问题。 JSFIDDLE

$(function () {
    if (parseInt($(".notification-counter").text()) == 0) {
        //$(".notification-counter").hide();
        $(".notification-container").hide();
    }
});

答案 1 :(得分:3)

使用修剪,因为有空格

FIDDLE

$(function () {
    if ($.trim($(".notification-counter").text()) == "0") {
        $(".notification-counter").hide();
        $(".notification-container").hide();
    }
});

答案 2 :(得分:2)

只需删除0左右的引号,它就能正常工作。

$(function () {
    if ($(".notification-counter").text() == 0) {
        $(".notification-counter").hide();
        $(".notification-container").hide();
    }
});

其他信息: 由于这里的许多人似乎不清楚,这里有一个小帮手: 在你的控制台中试试这个

 //hit F12 to view the console
var counter = $(".notification-counter");
var container = $(".notification-container");
console.log(container.text(), container.html());
console.log(container.text() == 0,container.text() == "0");
//true, false
console.log(typeof 0, typeof "0");
//number, string

JSFiddle

答案 3 :(得分:1)

var notificationCounter = $('.notification-counter');
if (notificationCounter.text().trim() === '0') {
  notificationCounter.closest('.notification-container').hide();
}

答案 4 :(得分:1)

试试这个:而不是.text()把.html()

$(function() {
  if ($(".notification-counter").html() == "0") {
    $(".notification-counter").hide();
    $(".notification-container").hide();
  }
});