上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页
摘要: <style> .xfk { display: block; position: fixed; top: 150px; left: 280px; height: 100px; width: 100px; }</style> 阅读全文
posted @ 2016-06-07 22:08 update_ 阅读(1351) 评论(0) 推荐(0) 编辑
摘要: /*两种调用方式var template1 = "我是{0},今年{1}了";var template2 = "我是{name},今年{age}了";var result1 = template1.format("loogn", 22);var result2 = template2.format( 阅读全文
posted @ 2016-06-07 16:40 update_ 阅读(267) 评论(0) 推荐(0) 编辑
摘要: function guid() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.substr(Math.floor(Math.random() * 0x 阅读全文
posted @ 2016-06-07 16:39 update_ 阅读(193) 评论(0) 推荐(0) 编辑
摘要: function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if ( 阅读全文
posted @ 2016-06-07 16:39 update_ 阅读(116) 评论(0) 推荐(0) 编辑
摘要: var userScreenHeight = $(window).height() - 36;var userScreenHeight = $(window).width() - 400; 阅读全文
posted @ 2016-06-07 16:37 update_ 阅读(154) 评论(0) 推荐(0) 编辑
摘要: function bindWD() { var row = $('#zydg').datagrid('getSelected'); if (row == null) { return; } $.ajax({ type: "post", url: "/ProjectCbk/GetFilesJson", 阅读全文
posted @ 2016-06-07 16:36 update_ 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 背景 这个是充分证明了我对js和css的不熟悉,之前一直用了个第三个插件实现加载等待功能,每次还挺麻烦,后来见了这位同事写的,这么简单。吓我一裤子。 实现 <div id="divloading" class="bg-loading"><div class="loadingmsg">正在处理,请稍等 阅读全文
posted @ 2016-06-07 16:34 update_ 阅读(497) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 启动服务 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void button1_Click(object sender, EventAr 阅读全文
posted @ 2016-06-07 15:44 update_ 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 一、新建项目 同SpringMVC_HelloWorld_01 二、配置文件 1、配置web.xml 2、配置springmvc-servlet.xml 三、编写Controller 四、新建jsp页面 同SpringMVC_HelloWorld_01 四、运行 同SpringMVC_HelloWo 阅读全文
posted @ 2016-06-07 13:01 update_ 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 背景 这是一个c#的C/S程序,只是个加载滚动条而已,没想到还大费周章。当初也是费了不少力气。也是不熟悉CS开发。搞完这个项目,算是真正熟悉了c#的客户端,但是用的太少了。基本也忘了。 转载 在我们的程序中,经常会有一些耗时较长的运算,为了保证用户体验,不引起界面不响应,我们一般会采用多线程操作,让 阅读全文
posted @ 2016-06-07 12:37 update_ 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页