2016年3月14日
摘要:
一、H-ui前端框架(http://www.h-ui.net)。H-ui后台管理系统模板(http://www.h-ui.net/H-ui.admin.shtml) 二、mui 三、jQuery Mobile 移动开发中的日期插件Mobiscroll,案例,http://www.17sucai.co
阅读全文
posted @ 2016-03-14 10:17
咖啡加点盐
阅读(173)
推荐(0)
2016年2月17日
摘要:
http://www.cnblogs.com/jiqing9006/archive/2012/07/26/2610586.html
阅读全文
posted @ 2016-02-17 14:01
咖啡加点盐
阅读(84)
推荐(0)
2015年9月26日
posted @ 2015-09-26 17:27
咖啡加点盐
阅读(132)
推荐(0)
2015年3月26日
摘要:
$.ajax({ type : "get", async:false, url: "http://192.168.0.117/webST/HandlerTest.ashx", data:{typeab:"fgdsfg1131"}, dataType : "jsonp", jsonp: "callba...
阅读全文
posted @ 2015-03-26 15:32
咖啡加点盐
阅读(337)
推荐(0)
2013年11月5日
摘要:
第一种:简单数字序号写法:nth-child(number)直接匹配第number个元素。参数number必须为大于0的整数。例子:li:nth-child(3){background:orange;}/*把第3个LI的背景设为橙色*/第二种:倍数写法:nth-child(an)匹配所有倍数为a的元素。其中参数an中的字母n不可缺省,它是倍数写法的标志,如3n、5n。例子:li:nth-child(3n){background:orange;}/*把第3、第6、第9、…、所有3的倍数的LI的背景设为橙色*/第三种:奇偶匹配:nth-child(odd) 与 :nth-child(even)分别
阅读全文
posted @ 2013-11-05 15:52
咖啡加点盐
阅读(162)
推荐(0)
2013年11月2日
摘要:
1、 创建语法create proc | procedure pro_name [{@参数数据类型} [=默认值] [output], {@参数数据类型} [=默认值] [output], .... ]as SQL_statements 2、 创建不带参数存储过程--创建存储过程if (exists (select * from sys.objects where name = 'proc_get_student')) drop proc proc_get_studentgocreate proc proc_get_studentas select...
阅读全文
posted @ 2013-11-02 11:27
咖啡加点盐
阅读(164)
推荐(0)
2013年10月31日
摘要:
using System;using System.Collections.Generic;using System.Text;namespace Delegate { //定义委托,它定义了可以代表的方法的类型 public delegate void GreetingDelegate(string name); class Program { private static void EnglishGreeting(string name) { Console.WriteLine("Morning, " + name); } private static void Chi
阅读全文
posted @ 2013-10-31 10:50
咖啡加点盐
阅读(140)
推荐(0)
2013年10月22日
摘要:
document.onkeydown = function(event) { e = event ? event : (window.event ? window.event : null); if (e.keyCode == 13) { document.getElementById("busseachSeach").click(); //调用按钮的click事件 return false; } }
阅读全文
posted @ 2013-10-22 15:56
咖啡加点盐
阅读(333)
推荐(0)
2013年9月6日
摘要:
overflow:hidden这个CSS样式是大家常用到的CSS样式,但是大多数人对这个样式的理解仅仅局限于隐藏溢出,而对于清除浮动这个含义不是很了解。一提到清除浮动,我们就会想到另外一个CSS样式:clear:both,我相信对于这个属性的理解大家都不成问题的。但是对于“浮动”这个词到底包含什么样的含义呢?我们下面来详细的阐述一下。这是一个常用的div写法,下面我们来书写样式。大家可以在DMX中自己做试验#wai{ width:500px; background:#000; height:500px;}#nei { float:left; width:600px; height:600px;
阅读全文
posted @ 2013-09-06 15:22
咖啡加点盐
阅读(455)
推荐(0)
摘要:
this.BeginInvoke(new MethodInvoker(() => //在当前线程里操作,否则会访问不到UI控件 { //写UI线程控件 }));
阅读全文
posted @ 2013-09-06 10:53
咖啡加点盐
阅读(194)
推荐(0)