如果li少于3个字符,请隐藏?

时间:2012-08-15 21:12:05

标签: javascript jquery dom

我希望能够隐藏少于3个字符的列表项,我该怎么办?我的代码有什么问题?

我是一名JavaScript / jQuery新手。

jQuery().ready(function () {
    if (jQuery('ol li').length < 3) {
        jQuery(this).hide();
    };
});

5 个答案:

答案 0 :(得分:12)

你的代码在说

if (jQuery('ol li').length < 3) {  //If I have less than 3 li elements
    jQuery(this).hide();   //hide the window object
};

您要使用的是过滤器

$('ol li').filter( function(){ return $(this).text().length<3; } ).hide();

编辑 - 根据您在帖子中的评论:如果是跨区标记,可能有其他数据:

$('ol li span').filter( function(){ return $(this).text().length<3; } ).parent().hide()

Fiddle running the span example

答案 1 :(得分:9)

您需要过滤掉内容少于3个字符的元素,并隐藏它们:

$(function() {
    $('ol li').filter(function() {
        return $(this).text().length < 3 ;
    }).hide();
});

答案 2 :(得分:5)

$('ul li').each(function() {
    if ($(this).text().length < 3)
        $(this).hide();
});

Demo

答案 3 :(得分:2)

试试这个:

$('ol li').filter(function(){ return $(this).text().length < 3; }).hide();

另一种选择可能是:

(因为您正在评估问题代码段中的元素而不是值字符)

if($('ol li').length < 3){ $(this).hide(); };

答案 4 :(得分:1)

我认为您需要获取DOM元素的.html(),然后对其进行.length