
这段时间在做开发时,用到了JQuery弹出炫丽对话框,背景变灰色。特地和大家分享分享。
先看效果图:
代码如下:
代码如下:
script>
script>
JQuery弹出框,背景变灰色 $(document).ready(function(e) {
$( "#reviews" ).bind('click',function(event) {
$( "#checkandPass" ).dialog({
autoOpen: true,
width: 765 ,
show: "blind",
hide: "explode",
modal: true,//设置背景灰的
});
$( "#checkandPass" ).dialog( "open" );
return true;
});
});
script>
保证是你要的效果。