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 从选定对象中获取外部 HTML。
例如
$("#test.test_class")
到 HTML 字符串
<div id="test" class="test_class"></div>
有谁知道我该怎么做?
您可以使用元素的outerHTML属性来获取所选元素的 html 字符串表示形式。jquery 中没有其他直接方法/属性可以为您提供此功能。
$("#test.test_class")[0].outerHTML;
或者
$("#test.test_class").get(0).outerHTML;
小提琴