代码如下:
div隐藏与显示
====================
无标题文档
居中的DIV
=======================
3.javascript 控制 html元素 显示/隐藏
1。编写js函数
2. 要显示/隐藏的html元素加上 id 属性
3,添加按钮,链接等触发 js 函数
显示/隐藏javascript显示隐藏层
广告
javascript隐藏/显示表单对象
javascript隐藏/显示表单对象
[SCRIPT language=JavaScript]
function expandIt(el) {
whichEl =document.getElementById(el)
if (whichEl.style.display == 'none') {
whichEl.style.display = '';
}
else {
whichEl.style.display = 'none';
}
}
[/SCRIPT]
el是对象的id,不管是tr或者table等等先设置一下id,然后进行调用。
例:
[a onclick="expandIt('ttchild'); return false" href="#" ]try it[/a]
[tr id="ttchild"][td width="18"]Example[/td][/tr]
使用时把[]变成<>
javascript控制页面控件隐藏显示的两种方法
javascript控制页面控件隐藏显示的两种方法,方法的不同之处在于控件隐藏后是否还在页面上占位
方法一:
document.all["PanelSMS"].style.visibility="hidden";
document.all["PanelSMS"].style.visibility="visible";
方法二:
document.all["PanelSMS"].style.display="none";
document.all["PanelSMS"].style.display="inline";