在jQuery中访问子DIV

时间:2014-11-07 01:00:20

标签: javascript jquery css show

我有一个结构,例如

<div class="entry">
     <p class="entry-text"><div class="nonmatched-sentence">some text goes here...</div></p>
</div>

如果之前隐藏了所有不匹配的句子元素,该如何显示?

我现在用这个:

$(this).('entry-text').children('.nonmatched-sentence').show();         

但它不起作用......

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以采用这种方法:http://jsfiddle.net/oejm2wfu/

例如,我在按钮点击上创建了一个事件:

$("#btn").click(function(){

    $(".nonmatched-sentence").each(function(){
   $(this).show(); 
});

});

但你可以在任何你想要的事件上做到这一点。希望有所帮助