gpt4 book ai didi

javascript - 使用 use 命令选择执行上下文 (Google Devtools)

转载 作者:行者123 更新时间:2023-12-01 03:14:10 25 4
gpt4 key购买 nike

我需要使用 Bookmarklet 来更改其上下文中某些网站的设置。我有必要的 var,但我不知道使用哪个命令来更改选择执行上下文。

Example

使用哪些命令来更改必要的变量?

我检查过:

  1. Select frame context with JavaScript
  2. Debugging iframes with Chrome developer tools
  3. what is the jQuery / JavaScript context of a frame within an iframe?
  4. Is there a way to change context to iframe in JavaScript console?

但这对我没有帮助

最佳答案

嗨,如果您想选择 id test2 的元素,您可以使用 document.getElementById('test2') 需要将 test2 包装为报价

如果 ID 为 test2 的元素位于 iframe 内,则需要先选择 iframe 并调用 contentDocument

var iframe = document.getElementById('iframe-id');
iframe.contentDocument.getElementById('test2');

或者,如果您正在使用 chrome devtools 进行测试,则可以更改上下文并正常使用 document.getElementById('test2')

enter image description here

关于javascript - 使用 use 命令选择执行上下文 (Google Devtools),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45646250/

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