这是代码:
for (i = 0; i < 8; i++) {
var meun = document.createElement("div");
meun.setAttribute('id', i);
meun.setAttribute("style", "width:70px; height:70px; background:url(archive/" + i + ".jpg); background-size: 70px 70px; float:left; margin-top:10px; opacity:1");
document.body.appendChild(frame);
document.getElementById("frame").appendChild(meun);
meun.addEventListener('click', function () {
window.location.href = "i+'.html'"
}, false);
}
我遇到的问题是addEventListener
:如何将变量传递i
给href
?我想这是语法问题。