欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM scripts 集合

JavaScript fuwuqijishu 2年前 (2022-09-04) 23次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM scripts 集合

Document 对象

实例

查看文档中有多少个 <script> 元素:

var x = document.scripts.length;


定义与用法

scripts 集合返回文档中所有 <script> 元素的集合。

注意: 元素在集合中的排序是它们在源代码中的顺序。

提示: 相关内容 Script
对象。


浏览器支持

表格中的数字表示支持该集合的第一个浏览器的版本号。

集合
scripts Yes Yes 9.0  Yes Yes

语法

document.scripts

属性

属性 描述
length 返回集合中 <script> 元素的个数。

提示: 这是一个只读属性。


方法

方法 描述
[index] 返回集合中指定索引(从 0 开始)的 <script> 元素。

注意: 如果索引值超出范围返回 null。

item(index) 返回集合中指定索引(从 0 开始)的 <script> 元素。

注意: 如果索引值超出范围返回 null。

namedItem(id) 回集合中指定 id 的 <script> 元素。

注意: 如果 id 不存在返回 null。


技术细节

DOM 版本: Core Level 3 Document Object
返回值: 一个 HTMLCollection 对象, 表示文档中所有的 <script> 元素。集合中元素的排序是根据源码中的顺序排列的。

更多实例

实例

[index]

获取文档中第一个(索引为 0) <script> 元素的内容:

var x = document.scripts[0].text;

实例

item(index)

获取文档中第一个(索引为 0) <script> 元素的内容:

var x = document.scripts.item(0).text;

实例

namedItem(id)

获取 id=”runoob” 的 <script> 元素的内容:

var x = document.scripts.namedItem("runoob").text;

实例

遍历文档中所有的 <script> 元素,并输出每个 <script> 元素的 id:

var x = document.scripts;
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + x[i].id + "<br>";
}


相关文章

JavaScript 参考手册: HTML DOM Script 对象

HTML 教程: HTML 脚本

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


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2214.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900