要素の中身を空にする。text('')
やhtml('')
と同じ。
empty()
empty メソッドの使用例を以下に示す。
<p id="txt">The quick brown fox jumps over the lazy dog.</p>
<button id="btn">Empty</button>
$("#btn").click(function (){
$("#txt").empty();
});
The quick brown fox jumps over the lazy dog.
OpenJS Foundation 2023. .empty(). jQuery API Documentation