-
用浏览器打开页面
https://www.cnblogs.com/liuyuelinfighting/category/1998653.html -
F12打开开发者工具,找到写脚本的地方
edge浏览器页面嵌入javascript脚本
火狐浏览器页面嵌入javascript脚本
console其实也行,代码比较短,且只执行一次的时候可以用console。
- 根据页面结构确定代码
var qwe = document.getElementsByClassName("entrylistItemTitle");
for(let i=0;i<qwe.length;i++){
// alert("[" + qwe[i].getElementsByTagName("span")[0].firstChild.nodeValue + "](" + qwe[i].getAttribute("href") + ")");
console.log("[" + qwe[i].getElementsByTagName("span")[0].firstChild.nodeValue + "](" + qwe[i].getAttribute("href") + ")");
}
这里获取当前页所有的文章标题和文章地址拼接输出成md格式的链接,方便使用。
- 执行代码