「jQuery」append()で複数のタグを追加するサンプル
書式
$変数名 = $(“<input>",{属性1,属性2});
使用例
1.htmlコード
<div class="cft"> <p> study skill and become strong,Do you understand? </p> </div> <button type="button" id="regTest">登録</button>
2.JavaScriptコード
$("regTest").click(functon(){ var $inputtag =$("<input>",{ "type" : "radio", "name" : "username", "id" : "id007", "value" : "study skill in arkgame" }); $(".cft").append($inputtag); });