所以可以根据 HTMLElement.offsetParent 来判断改节点是否隐藏
如果你要判断的节点恰好 position:fiexed ,那么可以通过 window.getComputedStyle() 判断:
相比第一种方案,第二种会慢很多,如果要做重复的判断,不建议使用第二种
你的意思 是。P1.P2只能显示一个。。。P1显示时P2隐藏。反之也一样是吧。代码:
$("p").click(function(){
$(this).show().siblings().hide()
})