我正在通过 ajax 调用返回通知
$app = JFactory::getApplication();
$app->enqueueMessage('Joomla notice', 'info');
在前端,这会导致以下结果(注意空标题):
<div id="system-message-container">
<div id="system-message" class="alert alert-info">
<h4 class="alert-heading"></h4>
<div>
<p>Joomla notice </p>
</div>
</div>
</div>
但是,我也想像在后端一样显示带有标题和关闭按钮的通知,即
<div id="system-message-container">
<button type="button" class="close" data-dismiss="alert">×</button>
<div class="alert alert-info">
<h4 class="alert-heading">Info</h4>
<p>Joomla notice</p>
</div>
</div>
有没有 Joomla 方法可以做到这一点,还是我必须想出一个解决方法?