我希望能够隐藏少于3个字符的列表项,我该怎么办?我的代码有什么问题?
我是一名JavaScript / jQuery新手。
jQuery().ready(function () {
if (jQuery('ol li').length < 3) {
jQuery(this).hide();
};
});
答案 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()
答案 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();
});
答案 3 :(得分:2)
试试这个:
$('ol li').filter(function(){ return $(this).text().length < 3; }).hide();
另一种选择可能是:
(因为您正在评估问题代码段中的元素而不是值字符)
if($('ol li').length < 3){ $(this).hide(); };
答案 4 :(得分:1)
我认为您需要获取DOM元素的.html()
,然后对其进行.length
。