Js如何设置某DIV不显示?

Js如何设置某DIV不显示?,第1张

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

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

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

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

JQuery的写法:

$("#id").show() // 可见

$("#id").hidden() // 不可见

JavaScript的写法:

document.getElementById("id").style.display = "block" // 可见

document.getElementById("id").style.display = "none" // 不可见


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存