0
このコードはまだ完全には完成していません。私はページ内にmがなくなるまで、ページ内のすべての 'm'変数を反復しようとしています。今、私は間違っていることが分かっています。誰でも正しい構文の正しい方向に向けることができますか?文書内の変数(Javascript)
var m = document.getElementsByClassName('project')
var n = document.getElementsByClassName('web')
var o = document.getElementsByClassName('print')
var p = document.getElementsByClassName('illustration')
function projectFilter(type){
if (type === 'print'){
for (m in document){
if (getElementsByClassName('print') != null){
m.style(opacity=0.3)
console.log("Whatshappening")
}
}
if (type === 'web'){
console.log('webbyshit')
}
if (type === 'illustration'){
console.log('illustrating')
}
if (type === 'project'){
console.log('EVERYTHING')
}
}
ありがとうございます!