上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 1、legend取消点击事件: 饼图:plotOptions.pie.point.events.legendItemClick = function() {return false;} 其他,如:plotOptions.column.events.legendItemClick = function 阅读全文
posted @ 2016-04-15 18:18 Matt_Cheng 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 视频地址:PhotoshopCS5视频教程 1、打开文件的快捷方式:软件刚启动时,双击绘图区域 2、文件->新建,弹出的新建对话框中,包含了剪切板及纸张的相关信息 3、图像缩放快捷方式:ctrl + + 或ctr + - 4、按下空格 + 鼠标左键,滚动图片 5、多图层重叠时,右击可以选择某一图层 阅读全文
posted @ 2016-01-08 19:10 Matt_Cheng 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 一个页面中可能嵌入多个iframe,该页面与iframe中的子页面的互操作方式如下: 1、父页面访问子页面 说明实例,index.aspx为父页面,index2.aspx为子页面并定义了函数save(),index.aspx如下: 1.1 window.frames window对象包含属性fram 阅读全文
posted @ 2015-12-23 13:40 Matt_Cheng 阅读(2036) 评论(0) 推荐(0) 编辑
摘要: 已封装为jquery插件,其中 a、fixedtable.css 1 .fix-header-table { overflow:auto; overflow-x:auto; overflow-y:hidden; position:relative; height:100%;} 2 .fix-head 阅读全文
posted @ 2015-12-14 15:16 Matt_Cheng 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 1、js函数调用过程中,js线程会进入新的执行环境并创建该环境的变量对象,并添加两个变量:this和arguments,因此可以在函数中使用这两个变量。需要注意的是,this变量不能重新赋值,而arguments可以,如下: 2、this取值于函数据以执行的函数对象 2.1 当函数在全局作用域执行时 阅读全文
posted @ 2015-12-09 22:23 Matt_Cheng 阅读(1277) 评论(0) 推荐(0) 编辑
摘要: 1、onload事件 1.1 onload事件分类 a、文档加载完成事件(包括脚本、图片等资源都加载完),绑定方法:<body onload="doSomething()"></body> 或者 window.onload=doSomething b、图片与脚本加载事件 注意: 1、图片元素的src 阅读全文
posted @ 2015-12-04 15:43 Matt_Cheng 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 单例类的要求: 1、类的构造函数及方法的实现与非单例类相同 2、类在调用前不会实例化 满足上述两点的一种实现方式如下: public class DataHelp { private static object objLock = new object(); private static DataH 阅读全文
posted @ 2015-11-27 14:46 Matt_Cheng 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1、连接字符串 SQL Server 身份验证,如:"server=yqzhu-peter;database=WindWMNew1_DB;uid=sa;pwd=ABcd1234;Connect Timeout=1000" 2、sa(system administrator),dbo(database 阅读全文
posted @ 2015-07-23 17:45 Matt_Cheng 阅读(259) 评论(0) 推荐(0) 编辑
摘要: google登录地址:老D博客 .net设计模式 http://caniuse.com/ http://www.iconfont.cn/ 图标 http://network.51cto.com/art/201508/488400.htm ColorPix chrome bookmark目录:C:\U 阅读全文
posted @ 2015-07-13 11:42 Matt_Cheng 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1、在数据库中新建表格,并插入记录,SQL如下: USE WFC_DB GO create table Students ( Id int primary key IDENTITY(1,1) not null, Name varchar(255), Age int, Score int ) GO i 阅读全文
posted @ 2015-07-03 18:26 Matt_Cheng 阅读(343) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页