Posted in Javascript onJanuary 15, 2013
当你需要使用弹出框时,当然可以使用jquery-ui,artdiag,blockUI等等,但今天我介绍一个轻量级的插件 boxy!它可以把美工设计的弹出框很容易的体现出来,而且兼容性还不错!
<script type='text/javascript'> $(function() { $('#ask-actuator').click(function() { Boxy.ask("How are you feeling?", ["Great", "OK", "Not so good"], function(val) { alert("You chose: " + val); }, {title: "This is a question..."}); return false; }); $('#alert-actuator').click(function() { Boxy.alert("File not found", null, {title: 'Message'}); return false; }); $('#confirm-actuator').click(function() { Boxy.confirm("Please confirm:", function() { alert('Confirmed!'); }, {title: 'Message'}); return false; }); }); </script>
你可以根据你的需要,把内容的ID替换到Boxy(content)中的content位置,方便之极。
js弹出框轻量级插件jquery.boxy使用介绍
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@