我正在尝试使用功能单击按钮时将文本字段的元素插入表格,“ Not”表示默认席位,“ yes”兼容席位。当所有字段均为红色时,该函数还必须返回true,否则返回false。这个问题在here
中有很好的解释var body = [];
function check2() {
for (let seat = 1; seat<=36; seat++) {
if(document.getElementById("s"+seat).value >= document.getElementById("s"+(seat+1)).value){
document.getElementById("s"+seat).style.background="red";
body+= document.innerHTML("<td>"+Not+"</td>");
} else {
document.getElementById("s"+seat).style.background="green";
body+=document.innerHTML("<tr>" +"<td>"+Yes+"</td>");
}
}
}
在遵守条件的情况下,结果必须插入表中。