我如何只在一篇文章中展示内容?
我使用Joomla 2.5和Ajax来调用一篇文章,但是当我在<div>
标记中呈现文章时,我再次呈现页眉,页脚和所有页面,但我只想要内容
如何配置页面或文章以仅显示内容?
答案 0 :(得分:11)
如果您只想获取组件,可以在网址中附加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');