「jquery入門」remove()で要素を削除するコード
1.htmlコード
<div>data 11</div>
data2 11
<div>test 12</div>
<button>削除</button>
2.jqueryコード
$(“button").click(function () {
$(“div").remove();
});
Coding Changes the World
1.htmlコード
<div>data 11</div>
data2 11
<div>test 12</div>
<button>削除</button>
2.jqueryコード
$(“button").click(function () {
$(“div").remove();
});