HTML DOM Details 对象

Details 对象表示一个 HTML <details> 元素

访问 Details 对象

可以使用 getElementById() 访问 <details> 元素

var x = document.getElementById("myDetails");

运行范例

创建 Details 对象

可以使用 document.createElement() 方法创建 <details> 元素

var x = document.createElement("details");

运行范例

Details 对象属性

属性 描述
open 设置或者返回 details 标签内的描述信息是否显示

标准属性和事件

Details 对象同样支持标准的 属性事件

相关文章

HTML 参考手册: HTML <details> 标签

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.