スタイルを設定して表示できるように、テキスト ファイルから読み取り、要素を挿入するスクリプトがあります。ただし、DIV 内の 2 つの要素をペアにしたいと考えています。コードは次のとおりです。
var lines = request.responseText.replace(/\r/g, "").split("\n"); // Remove carriage returns (\r) and place text into an array, split at the newline character (\n)
for (var i = 0; i < lines.length; i++) { // Cycle through each line in the array
if (lines[i].length >= 57) { // Check if the current line is lengthy, and if so.....separate function
}
var coup = document.createElement("div"); // Create a div element
coup.id = "line" + i; // Give the div an ID in the form of line0, line1, etc.
coup.innerText = coup.textContent = lines[i]; // Place the current line of text in the div
el_status.appendChild(coup); // Append the div to the status box
}
line0 と line1 を 1 つの DIV に入れたいと思います。次に、2 行目と 3 行目を別の DIV に入れたいと思います...
var coup は div である必要はありません。ap、span、または li に変更してもかまいません。
ありがとう!