jQuery UI1.8.7相关教程

来源:互联网 发布:税友集团数据挖掘 知乎 编辑:程序博客网 时间:2024/06/05 02:43
jQuery UI1.8.7相关教程

1.引入jquery-1.6.2.min.js、jquery-ui-1.8.16.custom.min.js两个js文件,jquery-ui-1.8.16.custom.css样式表

2.Jquery UI dialog 参数详解:

$("#dialog").dialog({            title : "this is a title",              height : 200,            width : 300,            modal : true,  //是否使用模式窗口,模式窗口打开后,页面其他元素将不能点击            resizable : false,  //是否可拖拽            show : "slide",            hide : "puff",            buttons    :  [                {                    text : "确定",                    click : function(){                        window.open("http://www.baidu.com","新开的窗口","")                    }                },                {                    text : "取消",                    click : function(){                        $(this).dialog("close")                    }                }            ]        })