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.
如何只在一篇文章中显示内容?
我正在使用 Joomla 2.5 和 Ajax 调用单个文章,但是当我在<div>标签中呈现文章时,我再次呈现页眉、页脚和所有页面,但我只想要内容。
<div>
如何将页面或文章配置为仅显示内容?
如果您只想获取组件,则可以tmpl=component在 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');
加载页面片段