私はindex.htmlをで別のDIV(#result)にロードする外部ファイル(test.htmlという)のコンテンツ(#content)があります。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>
どのようにしても、他のタグを含むことが#contentの唯一の実際のコンテンツ/ HTMLをロードしますが、唯一のラッパーなしDIV(#content)? 理由は、間違って他のスタイルのDIVと衝突する可能性のある不要な桁を単純に避けることです。
どのようなヒントもありがとうございます。ありがとう
は、あなたのマークアップが(行方不明クロージング「)壊れているように見える応じて更新 – Shyju
おかげで、 – swan
あなたが '.LOADでそれを行うことはできません() ' – zerkms