javascript-5-使用浏览器在网站中执行自己写的脚本

  1. 用浏览器打开页面
    https://www.cnblogs.com/liuyuelinfighting/category/1998653.html

  2. F12打开开发者工具,找到写脚本的地方

edge浏览器页面嵌入javascript脚本

image

火狐浏览器页面嵌入javascript脚本

image

console其实也行,代码比较短,且只执行一次的时候可以用console。

  1. 根据页面结构确定代码

image

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格式的链接,方便使用。

  1. 执行代码

image

image

posted @ 2022-12-12 14:22  姬雨晨  阅读(848)  评论(0编辑  收藏  举报