请AI帮忙写了一些功能,前面一值很顺利,但是想要用表头的标题来做switch,可是他一直显示函数未定义,问AI问半天也解不开,麻烦高手协助帮忙,谢谢。程式如下:
// 记录脚本启动
console.log("测试脚本启动中...");
// 主函数,监听命令并执行操作
chrome.commands.onCommand.addListener((command) => {
if (command === "open_tool") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
if (tabs.length > 0) {
chrome.scripting.executeScript({
target: { tabId: tabs[0].id },
func: executeBasedOnTitle, // 传递处理函数
});
}
});
}
});
// 根据标题选择执行对应函数
function executeBasedOnTitle() {
console.log("测试脚本执行中...");
const elements = document.querySelectorAll("div.display-1"); // 选取所有标题元素
if (elements.length === 0) {
console.warn("未找到任何标题元素,请确认网页结构。");
return;
}
const targetIndex = 0; // 修改为目标标题的索引
const titleElement = elements[targetIndex];
if (!titleElement) {
console.warn(`未找到索引为 ${targetIndex} 的标题元素,请确认网页结构。`);
return;
}
const titleText = titleElement.textContent.trim(); // 获取标题文字
console.log("当前报告标题:", titleText);
// 根据标题文字执行对应的函数
switch (titleText) {
case "吊笼检查报告":
if (typeof execute吊笼检查报告 === "function") {
execute吊笼检查报告();
} else {
console.error("函数 execute吊笼检查报告 未定义!");
}
break;
case "定期检查报告":
if (typeof execute定期检查报告 === "function") {
execute定期检查报告();
} else {
console.error("函数 execute定期检查报告 未定义!");
}
break;
case "固定式起重机定期检查报告表":
if (typeof executeFixedCraneInspectionReport === "function") {
executeFixedCraneInspectionReport();
} else {
console.error("函数 executeFixedCraneInspectionReport 未定义!");
}
break;
case "移动式起重机定期检查报告表":
if (typeof executeMobileCraneInspectionReport === "function") {
executeMobileCraneInspectionReport();
} else {
console.error("函数 executeMobileCraneInspectionReport 未定义!");
}
break;
default:
console.warn("未找到对应的程式,请确认报告标题内容:", titleText);
}
}
// 示例函数:吊笼检查报告
function execute吊笼检查报告() {
console.log("正在执行吊笼检查报告的处理逻辑...");
// 添加您的逻辑
}
// 示例函数:定期检查报告
function execute定期检查报告() {
console.log("正在执行定期检查报告的处理逻辑...");
// 添加您的逻辑
}
// 示例函数:固定式起重机定期检查报告表
function executeFixedCraneInspectionReport() {
console.log("正在执行固定式起重机定期检查报告表的处理逻辑...");
// 添加您的逻辑
}
// 示例函数:移动式起重机定期检查报告表
function executeMobileCraneInspectionReport() {
console.log("正在执行移动式起重机定期检查报告表的处理逻辑...");
// 添加您的逻辑
}
开人员工具的画面如下:
1 个回答
0
zivzhong
iT邦研究生 4 级 ‧ 2025-01-02 15:03:22
要然全部塞在一起?
chrome.commands.onCommand.addListener((command) => {
if (command === "open_tool") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
if (tabs.length > 0) {
chrome.scripting.executeScript({
target: { tabId: tabs[0].id },
func: () => {
// === 在被注入的函数内,定义所有需要的函数 ===
function execute吊笼检查报告() {
console.log("正在执行吊笼检查报告的处理逻辑...");
}
function execute定期检查报告() {
console.log("正在执行定期检查报告的处理逻辑...");
}
function executeFixedCraneInspectionReport() {
console.log("正在执行固定式起重机定期检查报告表的处理逻辑...");
}
function executeMobileCraneInspectionReport() {
console.log("正在执行移动式起重机定期检查报告表的处理逻辑...");
}
// === 然后在同一个作用域里执行你的主逻辑 ===
function executeBasedOnTitle() {
console.log("测试脚本执行中...");
const elements = document.querySelectorAll("div.display-1");
if (elements.length === 0) {
console.warn("未找到任何标题元素,请确认网页结构。");
return;
}
const targetIndex = 0;
const titleElement = elements[targetIndex];
if (!titleElement) {
console.warn(`未找到索引为 ${targetIndex} 的标题元素...`);
return;
}
const titleText = titleElement.textContent.trim();
console.log("当前报告标题:", titleText);
switch (titleText) {
case "吊笼检查报告":
execute吊笼检查报告();
break;
case "定期检查报告":
execute定期检查报告();
break;
case "固定式起重机定期检查报告表":
executeFixedCraneInspectionReport();
break;
case "移动式起重机定期检查报告表":
executeMobileCraneInspectionReport();
break;
default:
console.warn("未找到对应的程式:", titleText);
}
}
// 执行
executeBasedOnTitle();
},
});
}
});
}
});