另外,给父级元素定义overflow:hidden这样也能清除浮动。
初始化时动态加载隐藏。jquery :
$(function(){
$("#id").show()显示
$("#id").hide()隐藏
})
js :
function init(){
document.getElementById("id").style.display = "block" 显示
document.getElementById("id").style.display = "none" 隐藏
}
另外,给父级元素定义overflow:hidden这样也能清除浮动。
初始化时动态加载隐藏。jquery :
$(function(){
$("#id").show()显示
$("#id").hide()隐藏
})
js :
function init(){
document.getElementById("id").style.display = "block" 显示
document.getElementById("id").style.display = "none" 隐藏
}