這段時間在做開發時,用到了JQuery跳出炫麗對話框,背景變灰。特地和大家分享分享。 先看效果圖: 代碼如下: 複製代碼 代碼如下: JQuery彈出框,背景變灰 <BR>$(document).ready(function(e) { <BR>$( "#reviews" ).bind('click' ,function(event) { <BR>$( "#checkandPass" ).dialog({ <BR>autoOpen: true, <BR>width: 765 , <BR>show: "blind", <BR>hide: "explodeide ", <BR>modal: true,//設定背景灰的<BR>}); <BR>$( "#checkandPass" ).dialog( "open" ); <BR>return true; <BR>}) ; <BR>}); <BR> textarea> 確定 取消 保證是你要的效果。