/ Vijos / 讨论 / Vijos /

暂时的星标题目查看方法

需要

Chrome

操作

1 打开域的题库的某一页
2 按下F12,进入Console
3 输入如下代码,回车


console.log(document.getElementsByClassName('star activated'))

4 回显如下

HTMLCollection(该页面上的收藏数) [button.star.activated, button.star.activated]

5 点击左箭头,回显如下

HTMLCollection(该页面上的收藏数n) [button.star.activated, button.star.activated]
0:button.star.activated
1:button.star.activated
(有n条这样的记录)
length:该页面上的收藏数
__proto__:HTMLCollection

6 点击数字:后面的 button.star.activated
7 上面elements跳转到对应的项目
8 找到该行的父标签 <td class="col--name col--problem-name"> 的子标签 <a href="xxx">...</a> ,这其中的...就是题目名了。

总结

通过Console找星标的元素的ClassName输出的记录来定位题目。

记住,本方法只能列出当页的所有记录!

2 条评论

  • 1