04 2023 档案

摘要:chrome devtools overrides覆盖js文件后出现跨域问题,暂不知道什么原因;后改用reres扩展,解决了 tag:js逆向 阅读全文
posted @ 2023-04-27 22:06 hrdom 阅读(46) 评论(0) 推荐(0)
摘要:document.querySelector("#mainsrp-itemlist > div > div > div:nth-child(1) > div:nth-child(7)").click() 阅读全文
posted @ 2023-04-27 20:20 hrdom 阅读(20) 评论(0) 推荐(0)
摘要:运行下面这段代码 let li = document.querySelectorAll("a[title]") li.forEach(e => { e.href = e.title e.querySelector('div').addEventListener("mousedown", (event 阅读全文
posted @ 2023-04-27 19:17 hrdom 阅读(111) 评论(0) 推荐(0)
摘要:https://www.w3.org/TR/CSS2/visudet.html 10.6 Calculating heights and margins For calculating the values of 'top', 'margin-top', 'height', 'margin-bott 阅读全文
posted @ 2023-04-23 14:25 hrdom 阅读(32) 评论(0) 推荐(0)
摘要:Set<String> set = new HashSet<>(); set.add("a"); set.add("b"); Iterator<String> iterator = set.iterator(); for (String string : set) { iterator.next() 阅读全文
posted @ 2023-04-06 20:41 hrdom 阅读(26) 评论(0) 推荐(0)
摘要:HashMap<String,Integer> hm = new HashMap<>(); hm.put("a", 1); hm.put("c", 2); hm.put("b", 3); Set<Entry<String, Integer>> entrySet = hm.entrySet(); En 阅读全文
posted @ 2023-04-06 17:05 hrdom 阅读(51) 评论(0) 推荐(0)