一般来说,我对 Userscripts 和 JavaScript 有点陌生,而且我很迷茫。
基本上我想要做的是通过使用getElementsByClassName获得的元素,获取“name”属性中的数据,查看它是否包含某些内容,如果包含,将类名更改为其他内容。
在伪ish代码中:
items = getElementsByClassName("item1");
for each item in items {
if(item.attribute("name").contains("Hi"))
item.attribute("class") = "item2";
}
如果有人能给我一些关于如何做到这一点的提示,那就太棒了。