使用 Joomla!v2.5 和模态打开一个新的弹出窗口
<a href="index.php?option=com_mycomponent&view=my_view" class="modal" rel="{handler: 'iframe', size: {x: 800, y: 600}}">
用户将有一些选项(链接),例如信息/删除/锁定。
选择(单击)一个选项并单击“关闭”按钮后,我需要关闭模式或关闭模式并刷新页面。
我总是可以使用这样的东西刷新页面
<a href="index.php?option=com_mycomponent&view=my_view" class="modal" rel="{handler:'iframe', size: {x: 800, y: 600},onClose:function(){var js =window.location.reload();}}">
但我需要在某些条件下刷新页面(例如,用户单击“删除”=> 刷新,用户单击“信息”=> 什么也不做)
想法?
谢谢