我正在使用它来运行一个jQuery函数:
<script type="text/javascript">$('#customer_popup_notes').reveal();</script>
<script type="text/javascript">$('#customer_on_hold').reveal();</script>
不是让这两个页面在页面加载时同时运行,我如何使它们一次运行?
它们是页面加载时出现的弹出框-所以我想:
做第一个负载,
然后,当盒子关闭时,第二个盒子将被加载。
等等...
最佳答案
由于揭示没有任何与此相关的正式文件,因此我快速阅读了源代码并尝试一下。希望对你有帮助
$('#customer_popup_notes').bind('reveal:close', function(){
$('#customer_on_hold').reveal();
})
$('#customer_popup_notes').reveal();
更新:
根据代码https://github.com/zurb/reveal/blob/master/jquery.reveal.js,您有2个事件:
reveal:open
,reveal:close
关于javascript - 如何使jquery函数一次运行一次,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19141146/