Skip to content

Instantly share code, notes, and snippets.

@wuuconix
Last active August 25, 2024 05:08
Show Gist options
  • Save wuuconix/05382d8cf8cd96b8c65fe7cd5f9fea2b to your computer and use it in GitHub Desktop.
Save wuuconix/05382d8cf8cd96b8c65fe7cd5f9fea2b to your computer and use it in GitHub Desktop.
去除属性克制表双属性
function isPure(attr) {
return ["火", "水", "草", "飞行", "电", "地面", "机械", "冰", "超能", "普通", "战斗", "暗影", "光", "龙", "神秘", "圣灵", "次元", "远古", "邪灵", "自然", "王", "混沌", "神灵", "轮回", "虫", "虚空"].includes(attr)
}
document.querySelectorAll(".box_rc ul li").forEach(e => {
if (!isPure(e.querySelector("a").textContent)) {
e.remove()
}
})
document.querySelectorAll(".box_rc ul li").forEach(e => {
if (!isPure(e.querySelector("a").textContent)) {
e.remove()
}
})
@wuuconix
Copy link
Author

run this javascript code in https://news.4399.com/seer/ssxxk/

@wuuconix
Copy link
Author

before:

after:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment