當你需要使用彈出框時,當然可以使用jquery-ui,artdiag,blockUI等等,但今天我介紹一個輕量級的插件boxy!它可以把美工設計的彈出框很容易的體現出來,而且兼容性還不錯! 複製程式碼 程式碼如下: $(function() { <BR>$('#ask-actuator').click(function() { <BR>Boxy.ask("How are you feeling?", ["Great", "OK", "Not so good"], function(val) { <BR>alert("You chose: " val); <BR>}, {title: "This is a question..."}); <BR>return false ; <BR>}); <BR>$('#alert-actuator').click(function() { <BR>Boxy.alert("File not found", null, {title: 'Message'}); <BR>return false; <BR>}); <BR>$('#confirm-actuator').click(function() { <BR>Boxy.confirm("Please confirm:", function() { alert( 'Confirmed!'); }, {title: 'Message'}); <BR>return false; <BR>}); <BR>}); <BR> 你可以依照你的需要,把內容的ID替換到Boxy(content)中的content位置,方便之極。