我正在使用以下页面在成功当前页面时重定向下一页。
如何在加载新页面时显示弹出窗口并单击确定按钮它将移至下一页。
如何实现这一目标?
<script type="text/javascript">
$(document).ready(function () { //or $(window).load(function(){
$('#myModal').reveal($(this).data());
});
</script>
<div id="myModal" class="reveal-modal">
<h1>Reveal Modal Goodness</h1>
<p>This is a default modal in all its glory, but any of the styles here can easily be changed in the CSS.</p>
<inputbutton name=ok value="www.mpage.com" />
</div>
答案 0 :(得分:0)
不要将任何内容传递给reveal方法。显示Zurb Reveal的方法(它看起来就像你正在使用的那样)只接受这里指定的选项:http://zurb.com/playground/reveal-modal-plugin
$('#myModal').reveal();
假设您的页面上有myModal并且您在脚本之前加载了reveal插件,那么它应该可以正常工作。