ために使用して、HTMLテーブルを生成し、後述scenario->をして助けてくださいループ
私は1,2,3番が1つのタグに来る必要があることを表ように1から30までのwanna表示値が生じていますし、賢明な4,5,6のような他のtrタグのansので30の値まで。私はテーブルの要素に値を表示するためにテーブルを使用したいと思います。 「1」のような各値は1つに表示され、「2」は異なる<TD>
などで表示されるべきではない。
Iがその値「1」<Table>
タグの単一<TD>
に表示されるべきであると言うことを意味し、値「2」は、一つ<Tr>
が使用されるべき、三後続<TD>
秒後、ように別の<td>
タグに表示されるべきです。出力は次のようにする必要があります - >
1 2 3
4 5 6
7 8 9
などです。
早急に対応していただければ幸いです。ありがとう。下記の通り、私はコードを試してみました
は、
<script type="text/javascript">
document.write(" <table width='673' align='center' cellpadding='2' cellspacing='1'>");
document.write(" <tr>");
document.write(" <td valign = 'top'>");
document.write(" </td>");
document.write(" </tr>");
var cnt = 0;
for (var idx = 1; idx <= 30; idx++)
{
cnt = cnt + 1;
document.write(" <tr>");
document.write(" <td valign = 'top'>");
document.write(" <table width='100px' align='center' cellpadding='2' cellspacing='1'>");
document.write(" <tr>");
document.write(" <td align='center'>");
document.write(" " + idx + "");
document.write(" </td>");
document.write(" </tr>");
document.write(" <tr>");
document.write(" <td class='label'>");
document.write(" <span> name part : " + idx + "</span>");
document.write(" </td>");
document.write(" </tr>");
document.write(" </table>");
document.write(" </td>");
if (cnt = 3)
{
document.write(" </tr>");
}
if (cnt = 3) {
cnt = 0;
}
}
document.write(" </table>");
</script>
です9751799/generate-dynamic-html-for-for-loop? – j08691
ya @ j08691今回は、質問の詳細な説明とともに私の質問を明確にしました!私の初期の質問は答えずに終了して以来、私は新しいQを投稿しました。 – hero123
私は混乱しています。少なくとも、あなたの質問のコーディング部分を適切にフォーマットしてください。 – Kaf