随笔 - 432  文章 - 0  评论 - 15  阅读 - 63万
02 2015 档案
jQuery动态创建html元素的常用方法汇总
摘要:在使用jQuery进行WEB程序设计的时候非常有用。分享给大家供大家参考。具体方法如下: 一般来说,可以通过以下几种方式动态创建html元素: 1、使用jQuery创建元素的语法 2、把动态内容存放到数组中,再遍历数组动态创建html元素 3、使用模版 阅读全文
posted @ 2015-02-17 10:02 狼来了 阅读(10026) 评论(0) 推荐(1) 编辑
javascript——URI的编解码方法
摘要:有效的URI(统一资源标示符)是不能包含某些字符的,如空格,所以需要进行编码,编码方法有:encodeURI()和encodeURIComponent(),对编的码进行解码方法有:decodeURI()和decodeURIComponent()。 阅读全文
posted @ 2015-02-13 16:22 狼来了 阅读(258) 评论(0) 推荐(0) 编辑
为革命保护视力 --- 给 Visual Studio 换颜色
摘要:且不说上面这个眼保健操到底有木有用,让眼睛放松下还是很有必要的,尤其是现在天天对着不是手机、平板就是电脑,前阵子还听说有人因为长时间玩手机,导致失明的。所以,同志们,赶紧放松下眼睛吧~~~ 阅读全文
posted @ 2015-02-05 08:57 狼来了 阅读(261) 评论(0) 推荐(0) 编辑
免费的精品: Productivity Power Tools 动画演示
摘要:Productivity Power Tools 是微软官方推出的 Visual Studio 扩展,被用以提高开发人员生产率。它的出现一定程度上弥补和完善了 Visual Studio 自身的不足,比如其中的标记自动补全、复制引用等看似虽小,但却真得帮助我减轻了很多麻烦。博客园中推荐该扩展的文章也不在少数,本篇多少也有点类似,只是为了大家阅读方便,我为个别比较好有的功能配上了 GIF 动画。 阅读全文
posted @ 2015-02-05 08:40 狼来了 阅读(202) 评论(0) 推荐(0) 编辑
Sublime Text 全程指引
摘要:本文系统全面的介绍了Sublime Text,旨在成为最优秀的Sublime Text中文教程。 阅读全文
posted @ 2015-02-04 16:35 狼来了 阅读(238) 评论(0) 推荐(0) 编辑
asp.net,cookie,写cookie,取cookie
摘要:Cookie是一段文本信息,在客户端存储 Cookie 是 ASP.NET 的会话状态将请求与会话关联的方法之一。 阅读全文
posted @ 2015-02-04 13:17 狼来了 阅读(185) 评论(0) 推荐(0) 编辑
ASP.NET 操作Cookie详解 增加,修改,删除
摘要:Cookie,有时也用其复数形式Cookies,指某些网站为了辨别用户身份而储存在用户本地终端上的数据(通常经过加密)。 阅读全文
posted @ 2015-02-04 13:14 狼来了 阅读(880) 评论(0) 推荐(0) 编辑
jQuery.extend 函数详解
摘要:Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 阅读全文
posted @ 2015-02-03 16:53 狼来了 阅读(129) 评论(0) 推荐(0) 编辑
Json对象与Json字符串互转(4种转换方式)
摘要:$.parseJSON( jsonstr );JSON.parse(jsonstr);JSON.stringify(jsonobj);eval('(' + jsonstr + ')'); 阅读全文
posted @ 2015-02-03 16:35 狼来了 阅读(185) 评论(0) 推荐(0) 编辑
Web.config配置文件详解
摘要:花了点时间整理了一下ASP.NET Web.config配置文件的基本使用方法。由于Web.config在使用很灵活,可以自定义一些节点。所以这里只介绍一些比较常用的节点。 阅读全文
posted @ 2015-02-03 09:10 狼来了 阅读(182) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo 6(Options)
摘要:BlockUI's default options look (exactly) like this 阅读全文
posted @ 2015-02-02 14:33 狼来了 阅读(570) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo 5(Simple Modal Dialog Example)
摘要:This page demonstrates how to display a simple modal dialog. The button below will invoke blockUI with a custom message. Depending upon the user response (yes or no) an ajax call will be made while keeping the UI blocked. 阅读全文
posted @ 2015-02-02 14:30 狼来了 阅读(695) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo 4(Element Blocking Examples)
摘要:This page demonstrates how to block selected elements on the page rather than the entire page. The buttons below will block/unblock access to the bordered area beneath them. 阅读全文
posted @ 2015-02-02 14:28 狼来了 阅读(231) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo 3(Page Blocking Examples)
摘要:This page demonstrates several ways to block the page. Each button below activates blockUI and then makes a remote call to the server. 阅读全文
posted @ 2015-02-02 14:15 狼来了 阅读(177) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo 2
摘要:The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX, without locking the browser[1]. When activated, it will prevent user activity with the page (or part of the page) until it is deactivated. BlockUI adds elements to the DOM to give it both the appearance and behavior of blocking user interaction. 阅读全文
posted @ 2015-02-02 14:13 狼来了 阅读(196) 评论(0) 推荐(0) 编辑
<configSections> 位置引起的错误
摘要:节点前不允许有其它节点 阅读全文
posted @ 2015-02-02 14:03 狼来了 阅读(248) 评论(0) 推荐(0) 编辑
关于jQuery的cookies插件2.2.0版设置过期时间的说明
摘要:jQuery应该是各位用JavaScript做web开发的常用工具了,它有些插件能非常方便地操作cookie。 阅读全文
posted @ 2015-02-02 13:59 狼来了 阅读(425) 评论(0) 推荐(0) 编辑
jQuery插件—获取URL参数
摘要:插件地址:http://plugins.jquery.com/project/query-object 阅读全文
posted @ 2015-02-02 13:39 狼来了 阅读(714) 评论(0) 推荐(0) 编辑
jQuery BlockUI Plugin Demo
摘要:Most of the demos below will display for 2 seconds 阅读全文
posted @ 2015-02-02 13:35 狼来了 阅读(981) 评论(0) 推荐(0) 编辑
[jQuery] Cannot read property ‘msie’ of undefined错误的解决方法
摘要:最近把一个项目的jQuery升级到最新版,发现有些页面报错Cannot read property ‘msie’ of undefined。上jQuery网站上搜了一下,原因是$.browser这个api从jQuery1.9开始就正式废除,js代码里只要用到$.browser就会报这个错。具体说明参见jQuery官方说明。 阅读全文
posted @ 2015-02-02 11:32 狼来了 阅读(380) 评论(0) 推荐(0) 编辑

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示