.."?-6ren"> .."?-关于 firefox浏览器控制台,我可以访问 容器如下所示。 > window [object Window] > documentObject = window["document"-6ren">
gpt4 book ai didi

javascript - JavaScript 中的哪个对象包含 ".."?

转载 作者:行者123 更新时间:2023-11-30 16:50:04 29 4
gpt4 key购买 nike

关于 firefox浏览器控制台,我可以访问 <body></body>容器如下所示。

> window
[object Window]
> documentObject = window["document"];
[object HTMLDocument]
> documentObject["body"]
[object HTMLBodyElement]

请告诉我,我如何访问 <head></head>容器?

注意:请不要推荐getElementByTagName种方法。我正在尝试使用字典语法以上述方式访问。

最佳答案

你试过 document.head 了吗?您可以像这样访问正文:document.body。您也可以这样做:window.document.headwindow.document.body 但添加 window 不会改变任何内容。前者与后者相同。

你也可以使用computed member access运算符:

var head = document['head']; // Same as: window['document']['head']
var body = document['body']; // Same as: window['document']['body']

关于javascript - JavaScript 中的哪个对象包含 "<head>..</head>"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30660246/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com