<div class="wr_index_page_mini_bookInfo_content_title"><span data-v-dd57013d="">大模型应用开发 动手做AI Agent</span><div class="wr_index_page_mini_bookInfo_content_info_extra"><div class="wr_index_page_mini_bookInfo_content_info_extra_icon"></div><div class="wr_index_page_mini_bookInfo_content_info_extra_count">137</div></div></div>
在deepseek中输入提示词
你是一个编程专家,写一个可以运行在Chrome浏览器的Javascript脚本,脚本的任务是:
定位当前页面中所有class="wr_index_page_mini_bookInfo_content_title"的div元素,
提取其文本内容;
输出到Chrome浏览器的控制台;
Deepseek的回复:
以下是一个可以在Chrome浏览器中运行的JavaScript脚本,用于定位当前页面中所有 class="wr_index_page_mini_bookInfo_content_title" 的 div 元素,提取其文本内容,并输出到Chrome浏览器的控制台。
脚本代码
(function() {
// 获取所有符合条件的 div 元素
const elements = document.querySelectorAll('div.wr_index_page_mini_bookInfo_content_title');
// 检查是否找到元素
if (elements.length === 0) {
console.log('未找到符合条件的 div 元素。');
return;
}
// 遍历所有元素并提取文本内容
elements.forEach((element, index) => {
const text = element.textContent.trim(); // 提取文本内容并去除前后空格
console.log(`第 ${index + 1} 个元素的文本内容: ${text}`);
});
})();
接下来运行此脚本:
打开开发者工具:
按 F12 或 Ctrl + Shift + I(Windows/Linux),或 Cmd + Option + I(Mac)。
切换到 Console(控制台) 选项卡。
粘贴脚本代码:
将上述代码粘贴到控制台中。
按下回车运行:
可以看到微信读书的搜索结果都输出到控制台了: