我已经设置了一个功能,我单击一个按钮,并希望将html附加到我页面上的空div,不知道为什么它不起作用,我得到结果1控制台日志。
document.getElementById("results2").onclick = function(){
var total = w + x + y + z ;
console.log(total);
if (total == 4 || total == 5 || total == 6) {
console.log("results1");
function () {
var div1 = document.createElement('div');
div1.className = 'row';
div1.innerHTML = '<p>chillwave</p>';
document.getElementById('resultstitle').appendChild(div1);
}
}
if (total == 7 || total == 8 || total == 9) {
console.log("results2");
}
if (total == 10 || total == 11 || total == 12) {
console.log("results3");
}
}