JSはどうやってダイナミックリストを生成しますか?
本論文の例では、JSがどのようにダイナミックリストを生成するかを共有しています。
アイデア:JSの書き込み関数――HTMLではフォーム要素を利用してユーザーが入力した行と列の値を取得し、JSの関数を呼び出します。
主に使われている知識はJSはもちろん、フォーム要素、およびその属性value、および表…
コード:
アイデア:JSの書き込み関数――HTMLではフォーム要素を利用してユーザーが入力した行と列の値を取得し、JSの関数を呼び出します。
主に使われている知識はJSはもちろん、フォーム要素、およびその属性value、および表…
コード:
<!doctype html>
<html>
<head>
<meta charset = "utf-8">
<title> </title>
<style>
#form1{
padding:10px; width:400px; margin:0 auto;
}
</style>
<script type = "text/javascript">
function createTable() {
var r1 = document.getElementById( "row" ).value;
var c1 = document.getElementById( "col" ).value;
var n = 1; //
var str = "<table width = '100%' border = '1' cellspacing = '0' cellpadding = '0' ><tbody>";
for(i = 0; i<r1; i++) {
str = str+"<tr align = 'center'>"
for(j = 0; j<c1; j++) str = str+"<td>"+(n++)+"</td>"
str = str+"</tr>"
}
var d1 = document.getElementById( "d1" );
d1.innerHTML = str+"</tbody></table>";
}
</script>
</head>
<body>
<form id = "form1" name = "form1" method = "post" action = "">
<fieldset>
<legend> </legend>
:<input type = "text" id = "row" placeholder = " " required autofocus /><br/>
:<input type = "text" id = "col" placeholder = " " /><br/>
<input type = "button" id = "ok" value = " " onclick = "createTable()"/>
</fieldset>
</form>
<div id = "d1"></div>
</body>
</html>
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。