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.
文字列内のスペースを html タグに置き換えたいのですが、<br />これを行う最善の方法は何ですか? 現在、スペースを「-」に置き換えるこのコードがあります。
<br />
$(".msn").each(function() { $(this).text($(this).text().replace(/ /g, '-')); });
.html()の代わりに使用してみてください.text():
.html()
.text()
$(".msn").each(function() { $(this).html($(this).html().replace(/ /g, '<br />')); });