我有一些像这样的代码
if ($('.lblpricefrom > strong').html() == '£'){
$( 'lblpricefrom。')父母( “div.resultsitem”)隐藏();}
但它似乎隐藏了类lblpricefrom
的项目,即使html in = £456
我需要它只隐藏具有类lblpricefrom
的项目,如果html明确地= £
并且那就是
由于
杰米
更新
这是有效的
$('.lblpricefrom > strong').each(
function(){
if($(this).html() == '£'){
$(this).parents("div.resultsitem").hide();
}
});
感谢Thomas Clayson
答案 0 :(得分:1)
$('.lblpricefrom > strong').each(
function(){
if($(this).html() == '₤'){
$(this).hide();
}
});