Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私のコードです
$(document).each(function() { $('.imgContent span',this).unwrap(); });
html
<div> <h3> <span>$200</span> </h3> </div>
span タグを削除したい (NB-コンテンツなしでのみ span タグを削除する)
とは何$(document).each()ですか?とにかく、次のコードでうまくいくはずです。
$(document).each()
$(function() { $('h3 span').contents().unwrap(); });