有时在网页中要加入一个在线测试功能,例如在线调查,在线测试各类知识等应用,这类应用需要用到很多前后端技能。今天我给大家分享一个基于jQuery的前端应用——测试答题功能。 查看演示 下载源码 HTML 首先载入jquery库文件和quiz.js以及所需的CSS样式文件styles.css。 <script src="jquery.js"></script> <script src="quiz.js"></script>…
May 6, 2015
fancybox禁止通过点击背景关闭窗口 Disable fancyBox 2 from closing when clicking the background
For version 2.x use
$(".fancybox").fancybox({ closeClick : false, // prevents closing when clicking INSIDE fancybox helpers : { overlay : {closeClick: false} // prevents closing when clicking OUTSIDE fancybox } });
if closeClick
is set to true
(default) fancybox will close if clicking over the content so with these two combined options the only possible way to close fancybox is with the close
(X) button
hideOnOverlayClick
and hideOnContentClick
are options for Fancybox v1.3.x
原文:http://stackoverflow.com/a/8404587/4484798