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.
1つの記事のコンテンツのみを表示するにはどうすればよいですか?
Joomla 2.5とAjaxを使用して単一の記事を呼び出していますが、記事を<div>タグでレンダリングすると、ヘッダー、フッター、およびすべてのページが再度レンダリングされますが、コンテンツのみが必要です。
<div>
コンテンツのみを表示するようにページまたは記事を構成するにはどうすればよいですか?
コンポーネントのみを取得したい場合はtmpl=component、URLを使用してパラメーターを追加できます。記事のURLは次のようになります-
tmpl=component
index.php?option=com_content&view=article&id=1&tmpl=component
または、このように試すことができます-
$('#result').load('index.php?option=com_content&view=article&id=1&tmpl=component #container');
ページフラグメントの読み込み