我在外部文件(的test.html)含量(#內容)在index.html的加載到另一個DIV(#result):jquery的簡單的Ajax負載
的test.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>
你如何加載它也可以包含其他標籤#內容的唯一實際內容/ HTML,而只是沒有它的包裝DIV(#content)? 原因是爲了避免不必要的瑣事,這些瑣事也可能與其他風格的DIV錯誤地發生衝突。
任何提示都非常感謝。謝謝
您的標記似乎被打破(缺少結束「) – Shyju 2012-04-20 01:30:19
謝謝,相應的更新 – swan 2012-04-20 01:32:39
你不能做到這一點與'.load ()' – zerkms 2012-04-20 01:33:08