我在外部文件 (test.html) 中有一个内容 (#content) 以加载到 index.html 的另一个 DIV (#result) 中:
测试.html:
<div id="content">This text should not be loaded with its DIV. <strong> May contain other tags</strong></div>
jQuery:
$('#result').load('test.html #content');
index.html 结果,出乎意料:
<div id="result"><div id="content">This text should not be loaded with its DIV. <strong> May contain other tags</strong></div></div>
index.html 结果,预期:
<div id="result">This text should not be loaded with its DIV. <strong> May contain other tags</strong></div>
你如何只加载#content 的实际内容/ HTML,它也可能包含其他标签,但只加载没有它的包装器 DIV (#content)?原因是为了简单地避免不必要的 div,它们也可能与其他样式的 DIV 错误地发生冲突。
非常感谢任何提示。谢谢