例、
<td id="example">
Something is inside here.
<button id="paymentBtn">pay</button>
</td>
私がやりたいことは、"only emtpy"
支払いボタンの前に、このような新しいものを挿入することです.
<td id="example">
Deleted old one, and inserted new one.
<button id="paymentBtn">pay</button>
</td>
私は私が使用できることを知っています
$("#paymentBtn").before("inserted new one");
しかし、どうすれば空にできますか?
例が空の場合。それはすべてを吹き飛ばし、
$("#paymentBtn").before().empty();
これは機能しません:(