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.
如何使用 jQuery 更改具有位于文本区域内的 id 的 html 标记之间的文本。
<textarea><div id="tochange">Text</div></textarea>
如何更改 #tochange 中的“文本”,当然这将显示为 HTML 代码,就像它在 textarea 中一样。
$('textarea').val( $('<div />').append( $($('textarea').val()).text('something') ).html() );
小提琴