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" // 不可见
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)