摘要: Jquery实现div拖拽 New Document 这个可以拖动哦 ^_^ $("#question_pic").bind("click",function(event){ event.stopPropagation(); ... 阅读全文
posted @ 2014-07-31 22:34 会敲代码的狼 阅读(353) 评论(0) 推荐(0) 编辑
摘要: IIS下 配置 * 设置 网站标识 -> IP地址 -> 高级 将端口填写为 80 , 将主机头值写为 域名Apache下 配置 httpd.conf文件,将以下代码添加到最后一行NameVirtualHost 98.126.193.240:80 DocumentRoot "d:/wamp/... 阅读全文
posted @ 2014-07-27 21:02 会敲代码的狼 阅读(974) 评论(1) 推荐(0) 编辑
摘要: 判断是否为PC来源:http://blog.csdn.net/seven1276/article/details/8211877function IsPC() { var userAgentInfo = navigator.userAgent; ... 阅读全文
posted @ 2014-07-26 09:27 会敲代码的狼 阅读(157) 评论(0) 推荐(0) 编辑
摘要: * 自定义属性第一步: 去 xxx_arcatt表 按照 sortid顺序来 创建自己想要的自定义属性,但attname不能超过四个中文,超过了dede后台将无法显示第二部: 按照你创建的自定义的属性的顺序,输入以下 sql语句 (更改 set 语句中的属性);第三部: 完事;alter table... 阅读全文
posted @ 2014-07-22 15:58 会敲代码的狼 阅读(102) 评论(0) 推荐(0) 编辑
摘要: *火狐不兼容 background-position-x || y 改写为 background-position: x y; 就好* 服务器上: iframe 的相对 src 无法连接 将相对src写为绝对src;(暂时没更好的办法) 阅读全文
posted @ 2014-07-01 09:57 会敲代码的狼 阅读(130) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/p/codetank 阅读全文
posted @ 2014-06-21 16:41 会敲代码的狼 阅读(357) 评论(0) 推荐(0) 编辑
摘要: js键盘事件js键盘事件,详见下:event.keycode大全(javascript)keycode 8 = BackSpace BackSpace keycode 9 = Tab Tab keycode 12 = Clear keycode 13 = Enter keycode 16 = Shi... 阅读全文
posted @ 2014-06-19 11:12 会敲代码的狼 阅读(241) 评论(0) 推荐(0) 编辑
摘要: display:inline-block 代替 float; 消除 inline-block 元素之间的缝隙ul{font-size:0; /* 子级 inline-block 产生的缝隙取消 */}li{ display: inline-block; *display: inline;... 阅读全文
posted @ 2014-06-03 11:35 会敲代码的狼 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 布局属性box-sizing这个属性能够改变盒模型计算方式,值有 content-box, border-box; 当值为border-box时,盒模型宽度固定为width的值,盒模型的padding与border的值将包括在width值内,盒模型内容的宽度 = 盒模型width - padding... 阅读全文
posted @ 2014-06-03 11:18 会敲代码的狼 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 前言:本文章只会写 Kendo UI 组件的基础调用方法AutoComplete // html // js $(document).ready(function () { var data = [ "中国", ... 阅读全文
posted @ 2014-05-30 14:05 会敲代码的狼 阅读(9776) 评论(1) 推荐(2) 编辑