我在顶部菜单中有一个链接来添加新活动。 当我在事件列表页面上时,此链接会打开一个带有新事件表单的模式。 Howether如果我在其他页面上,我希望此链接(在顶部菜单中)重定向此事件列表页面,并打开模态新事件表单。
有可能吗?
感谢您的帮助
答案 0 :(得分:1)
使用哈希
链接就像:
<a href="/costompagewithmodal#open">link to modal page</a>
在/ costompagewithmodal中,如果哈希打开存在,则显示div
$(function(){
if(window.location.hash == '#open') {
$('#myModal').modal('show');
}
})