jquery :
$(function(){
$("#id").show()显示
$("#id").hide()隐藏
})
js :
function init(){
document.getElementById("id").style.display = "block" 显示
document.getElementById("id").style.display = "none" 隐藏
}
jquery :
$(function(){
$("#id").show()显示
$("#id").hide()隐藏
})
js :
function init(){
document.getElementById("id").style.display = "block" 显示
document.getElementById("id").style.display = "none" 隐藏
}