<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>面板的效果</title>
<link rel="stylesheet" href="include/ui-lightness/jquery-ui-1.8.18.custom.css" />
<script type="text/javascript" src="./include/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="./include/jquery-ui-1.8.18.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function (){
//注册对话框
$("#dialog").dialog({
autoOpen:false, //设置对话框打开的方式 不是自动打开
show:"blind", //打开时的动画效果
hide:"explode", //关闭时的动画效果
modal:true, //ture遮罩效果 false非遮罩效果
/*buttons:{ //添加按钮的操作
"确定":function(){
alert("提交成功");
$(this).dialog("close"); //关闭对话框
},
"取消":function(){alert("取消了");}
},*/
//buttons效果和上面的一样两种方法
buttons:[
{
text:"ok",
click:function(){$(this).dialog("close");}
},
{
text:"取消",
click:function(){$(this).dialog("close");}
},
],
draggable:true, //是否可以拖动的效果 true可以拖动 默认值true
closeOnEscape:false, //是否采用esc退出对话框 false不使用esc关闭对话框 默认 true采用
title:"添加用户操作页面", //添加对话框标题
position:"top", //对话框弹出的位置 可以使top left right center bottom默认值center
width:600, //对话框的宽度
height:300, //对话框的高度
resizable:false, //是否可以改变尺寸的操作 false不可以改变尺寸 默认值true
zIndex:6, //层叠 如果再有一个dialog就层叠了
drag:function(event,ui){
//可以测试出 对话框的当前坐标位置
$("#dialog").html("aaa");
//alert("你敢拖拽,我就执行");
}
});
//触发链接的事件 当你点击 连接 打开一个对话
$("#dialog_link").click(function(){
$("#dialog").dialog("open"); //open参数 作用 打开对话框
});
//我怎么获取 我设置的options中的参数值
var modalValue=$("#dialog").dialog("option","modal");
//alert(modalValue);
//我怎么设置options中的参数值
$("#dialog").dialog("option","modal",false);
});
</script>
<style type="text/css">
#dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;}
#dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;}
</style>
</head>
<body>
<h1 align="center">模拟Dialog效果</h1>
<!--创建连接-->
<a href="#" id="dialog_link" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-newwin"></span>Open Dialog</a>
<!--div对话框 $("#dialog").dialog();他就成了一个对话框 在页面中就会隐藏-->
<div id="dialog" title="hi!">
输入姓名:<input type="text">
</div>
</body>
</html>