私はandroid用のphonegapを使用してアプリを開発しておりFOR
、htmlテーブル行を使用してjavascriptでループを作成しようとしています。私は使ってみましたdocument.write
が、ページのすべてのコンテンツが消えて、それが何であるかを示しますdocument.write
。私が持っているコードはこれです:
<table id="hor-minimalist-b">
<script language=javascript>
for (var i=0; i<3; i++) {
document.write('<tr>');
document.write('<td>');
document.write('<input type="text" name="valor" id="valor" value="key' + i'">');
document.write('</td>');
document.write('</tr>');
}
</script>
</table>
ありがとう。