怎么用javascript将html元素隐藏同时在页面最初加载的时候不会被显示出来

怎么用javascript将html元素隐藏同时在页面最初加载的时候不会被显示出来,第1张

1。编写js函数

<script type="text/javascript">

function display(y){$(y).style.display=($(y).style.display=="none")?"":"none"}

function $(s){return document.getElementById(s)}

</script>

2. 要显示/隐藏的html元素加上 id 属性

<table>

<tr id="menu" >

<td>控制这个tr的显示/隐藏</td>

</tr>

</table>

3,添加按钮,链接等触发 js 函数

<input type="button" onclick="display('menu')" value="显示/隐藏"/>

<a href="#" onclick="display('menu')" >显示/隐藏</a>

javascript显示隐藏层<div id="layer" style="display:none">广告</div>

<input type="botton" onclick="display(layer)">

二: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"

方法一隐藏后 页面的位置还被控件占用 只是不显示

方法二隐藏后 页面的位置不被占用

需要准备的材料分别是:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,新建html文件,例如:index.html。

2、在index.html的<script>标签中,再输入js代码:document.body.removeChild(document.getElementById("a"))。

3、浏览器运行index.html页面,会发现内容为123的div被移除了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11649597.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存