example:
if(login()) {
// jQuery to change CSS attribute from hidden to visible
}
我想在登录时向用户显示输入表单,否则他们看不到该表单。
谢谢
查看 jQuery hide()
if(login()) {
$('#inputthing').show();
} else {
$('#inputthing').hide();
}