我正在尝试获取多个元素,这些元素组织在 3 个数组“tops”、“bottoms”、“shoes”下。
我知道我可以使用
document.getElementsByClassName("class1 class2");
如何更改每个对象的样式,我当前的代码是:(我尝试了可见性和不透明度,但它不断收到未捕获的类型错误,因为 document.getelements.... 没有返回任何内容。
function filter() {
var this_id = event.target.id;
console.log(this_id);
if (this_id = "filtertops") {
document.getElementsByClassName("a4 a7 a11 a12 a8").style.visibility="hidden"; //not tops
document.getElementsByClassName("a1 a2 a3 a5 a9 a10 a14").style.visbility="visible"; // tops
}
else if (this_id = "filterbottoms") {
document.getElementsByClassName("a2 a3 a5 a10 a14 a8").style.opacity="0.4"; //not bottoms
document.getElementsByClassName("a1 a4 a7 a9 a11 a12").style.opacity="1"; //bottoms
}
else if (this_id = "filtershoes") {
document.getElementsByClassName("a1 a2 a3 a4 a5 a7 a9 a10 a11 a12 14").style.opacity="0.4"; //not shoes
document.getElementsByClassName("a8").style.opacity="1"; //shoes
}
我也尝试将它们分配给一个变量,然后是一个 for 循环来更改每个对象的样式,但这也不起作用。
function filterbottoms() {
var nonbottom = document.getElementsByClassName("a2 a3 a5 a10 a14 a8");
var bottoms = document.getElementsByClassName("a1 a4 a7 a9 a11 a12");
for (i in bottoms)
{
i.style.visibility='visible';
}
for (i in nonbottom)
{
i.style.visibility='hidden';
}
}