The correct way to do this is to use show
and hide
:
(正确的方法是使用show
和hide
:)
$('#id').hide();
$('#id').show();
An alternate way is to use the jQuery css method:
(另一种方法是使用jQuery css方法:)
$("#id").css("display", "none");
$("#id").css("display", "block");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…