03 2009 档案
多路搜索树的初始化实现
摘要:MTree.h #pragma once#include using namespace std; //节点的关键字和子节点的指针对是//p0 p1 p2 ... p(n-1) pn//k0 k1 k2 ... k(n-1)//而不是象教材里的//p0 p1 p2 ... p(n-1) pn// k1 k2 ... k(n-1) kntemplate class MTreeNode{pu... 阅读全文
posted @ 2009-03-16 13:32 袁晓平 阅读(203) 评论(0) 推荐(0)
default.aspx.cs的内容
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HtmlControls; namespace JQueryDialog{ publi... 阅读全文
posted @ 2009-03-16 13:29 袁晓平 阅读(190) 评论(0) 推荐(0)
default.aspx内容
摘要:ABCDEFGHIJKLJMNABCDEFGHIJKLJMNABCDEFGHIJKLJMNABCDEFGHIJKLJMNABCD Hello,world========================================... 阅读全文
posted @ 2009-03-16 13:28 袁晓平 阅读(342) 评论(0) 推荐(0)
三个css样式文件的内容
摘要:jquery-ui-dialog-ie6.css的内容如下: .ui-dialog-titlebar { /*resets*/margin: 0 0 0 20; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; padding: .5em ... 阅读全文
posted @ 2009-03-16 13:27 袁晓平 阅读(403) 评论(0) 推荐(0)
ui.resizable.js(原版,未做改动)
摘要:/* * jQuery UI Resizable * * Copyright (c) 2008 Paul Bakaus * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI/Resizables * * Depends:... 阅读全文
posted @ 2009-03-16 13:24 袁晓平 阅读(620) 评论(0) 推荐(0)
ui.draggable.js(原版,未做改动)
摘要:/* * jQuery UI Draggable * * Copyright (c) 2008 Paul Bakaus * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI/Draggables * * Depends:... 阅读全文
posted @ 2009-03-16 13:23 袁晓平 阅读(855) 评论(0) 推荐(0)
ui.core.js(未做改动)
摘要:/* * jQuery UI 1.5.3 * * Copyright (c) 2008 Paul Bakaus (ui.jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI */;(function... 阅读全文
posted @ 2009-03-16 13:22 袁晓平 阅读(546) 评论(0) 推荐(0)
jquery-1.2.6.js(原版,未做改动)
摘要:(function() { /* * jQuery 1.2.6 - New Wave Javascript * * Copyright (c) 2008 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licen... 阅读全文
posted @ 2009-03-16 13:20 袁晓平 阅读(2358) 评论(0) 推荐(0)
修改过后的ui.dialog.js
摘要:/* * jQuery UI Dialog * * Copyright (c) 2008 Richard D. Worth (rdworth.org) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI/Dialog ... 阅读全文
posted @ 2009-03-16 13:17 袁晓平 阅读(1098) 评论(0) 推荐(0)
JQuery1.2.6 ui.dialog控件在IE6下标题栏显示不正常的问题解决
摘要:由于项目中用到了jquery1.2.6版的dialog控件,可以较好地解决一些用户选择、单位选择的问题,也比较美观,但后来发现在IE6下显示有点不正常,截图请参见最后,经过查看源代码发现只要将css里的ui-dialog-titlebar类的position属性有relative该为absolute,然后再修改ui.dialog.js,在空间初始化及改变大小和拖动dialog时进行一点调整就可以在... 阅读全文
posted @ 2009-03-16 13:11 袁晓平 阅读(959) 评论(0) 推荐(0)