「jQuery入門」prependTo()と.attr()の使い方

2017年11月23日

1.ラジオボタンの値を選択
$(“userId").attr(“checked", “checked");

2.チェックボックスの値を選択
$(“addressId").attr(“checked", “checked");

3.prependTo()
指定された要素に追加
<button id="testBtn">prependTo</button>
<ul id="addressLst">
<li>データ1</li>
<li>データ2</li>
<li>データ3</li>
</ul>

$(“#testBtn").click(function(){
$(“<li>データ4</li>").prependTo(“#addressLst");
});

jQuery

Posted by arkgame