说,我在页面中突出显示了此文本The Title is Superman and Batman
。
如何获取包含HTML元素的文本?
根据我的示例,我应该得到以下信息:
The Title is <i>Superman</i> and <i>Batman</i>
最佳答案
使用jquery html选择器通过HTML选择器获取值。
HTML:
<div id="test">this is my <i>test</i></div>
JS:
$('#test').html()