赞
踩
持续学习ing
在VSCode 右键 code runner js 文件报错 ReferenceError: document is not defined
eg:
// 为每个按钮添加点击事件监听器 document.querySelectorAll('button').forEach(function (button) { button.addEventListener('click', function () { // 获取当前按钮的data-phone和data-password属性值 const phone = this.getAttribute('data-phone'); const password = this.getAttribute('data-password'); // 获取当前活动的标签页 chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) { // 在当前标签页中注入并执行脚本 chrome.scripting.executeScript({ target: { tabId: tabs[0].id }, function: login, args: [0, phone, password] }); }); });
报错的提醒:
https://blog.csdn.net/qq_52736131/article/details/123563321
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。