可以將此代碼更改爲javascript中的循環嗎? 感謝您幫助我的新學習者javascript!javascript循環(使用foreach或每個)
HTML:
<div class="uploadBox"><input id="files3" class="upload" style="position:absolute;" placeholder="Upload Photo"/><input type="file" style="position:absolute;width:200px;height:44px;opacity:0;" id="selector3"/></div>
<div id="checkBox3" class="checkBox"><img src="images/check.png"></div>
的javascript:
document.getElementById("selector1").addEventListener("change",function(){
document.getElementById("files1").value=
document.getElementById("selector1").files[0].name;
$('#checkBox1').css({'display': 'block'});
});
document.getElementById("selector2").addEventListener("change",function(){
document.getElementById("files2").value=
document.getElementById("selector2").files[0].name;
$('#checkBox2').css({'display': 'block'});
});
document.getElementById("selector3").addEventListener("change",function(){
document.getElementById("files3").value=
document.getElementById("selector3").files[0].name;
$('#checkBox3').css({'display': 'block'});
});
我們需要看到你的HTML代碼也。你的代碼中有jQuery,jquery也有'.each()'方法... – Sergio
@Sergio我加了我的html!感謝您的回覆 – youaremysunshine
是否有一個父div給那些2 div? – Sergio