如果可能的话,有人能指出我正确的方向吗?
我有一封电子邮件,我想发送给用户,其中包含指向特定页面的链接。我在该页面上有模式,我希望根据 url 使用特定模式打开页面。例子:
domain.com/story/#story1
打开带有 OPEN 的页面 显示带有 id 的模态#story1
如果有人可以提供帮助,我将不胜感激。
我在通过以下方式导航到页面时设法打开了模式窗口
("#Modal8").foundation('reveal', 'open');
有人建议我使用
<script>
var hash = window.location.hash;
if (hash === "#story8") {
$('#Modal8').reveal({
animation: 'fadeAndPop', //fade, fadeAndPop, none
animationspeed: 300, //how fast animtions are
closeonbackgroundclick: true, //if you click background will modal close?
dismissmodalclass: 'close-reveal-modal' //element that will close an open modal
}); //You can use same modal or different modal to show success message
}
</script>
我试过没有成功。