上一页 1 2 3 4 5 6 7 8 9 10 ··· 55 下一页

2014年5月14日

XHR2:js异步上传

摘要: http://dev.opera.com/articles/xhr2/1234567891011121314151617181920212223242526272829303132var xhr = new XMLHttpRequest();var onProgressHandler = func... 阅读全文

posted @ 2014-05-14 22:54 dhj 阅读(176) 评论(0) 推荐(0) 编辑

2014年5月12日

jQuery中attr和prop方法的区别

摘要: jQuery中attr和prop方法的区别。http://my.oschina.net/bosscheng/blog/125833http://www.javascript100.com/?p=877这篇讲的还好相比attr,prop是1.6.1才新出来的,两者从中文意思理解,都是获取/设置属性的... 阅读全文

posted @ 2014-05-12 19:41 dhj 阅读(185) 评论(0) 推荐(0) 编辑

2014年5月6日

js的几个可能不清晰的问题

摘要: 一、关于全局变量的vartest=function(){vara=1;setTimeout(function(){console.log(a);a=2;},1000);a=3;setTimeout(function(){console.log(a);a=4;},2000);};test();结果是... 阅读全文

posted @ 2014-05-06 16:01 dhj 阅读(131) 评论(0) 推荐(0) 编辑

2014年4月21日

CSS 属性选择器

摘要: http://www.w3school.com.cn/css/css_syntax_attribute_selector.asp对带有指定属性的 HTML 元素设置样式。可以为拥有指定属性的 HTML 元素设置样式,而不仅限于 class 和 id 属性。注释:只有在规定了 !DOCTYPE 时,... 阅读全文

posted @ 2014-04-21 14:06 dhj 阅读(129) 评论(0) 推荐(0) 编辑

可以从CSS框架中借鉴到什么

摘要: http://isux.tencent.com/css-framework.htmlhttp://isux.tencent.com/css-framework.html现在很多人会使用 CSS框架进行快速建站。那 CSS框架是什么呢,它通常是一些 CSS文件的集合,这些文件包括基本布局、表单样式、... 阅读全文

posted @ 2014-04-21 13:15 dhj 阅读(115) 评论(0) 推荐(0) 编辑

2014年4月5日

bower解决js的依赖管理

摘要: http://segmentfault.com/a/1190000000349555http://blog.fens.me/nodejs-bower-intro/从零开始nodejs系列文章,将介绍如何利Javascript做为服务端脚本,通过Nodejs框架web开发。Nodejs框架是基于V8... 阅读全文

posted @ 2014-04-05 22:59 dhj 阅读(144) 评论(0) 推荐(0) 编辑

2014年3月24日

Angular.js vs Ember.js

摘要: http://segmentfault.com/a/1190000000362479Discourse的推出在整个社区赚足了眼球。Discourse选择Ember.JS作为前端MVC框架,其开发者Robin Ward写了博客分享选择Ember.js的理由最近Quora网站上也有人提问,Angula... 阅读全文

posted @ 2014-03-24 10:32 dhj 阅读(200) 评论(0) 推荐(0) 编辑

2014年3月9日

js设计模式

摘要: http://www.cnblogs.com/yexinw/archive/2011/09/03/2165419.htmlhttp://www.cnblogs.com/ranran/p/3573433.htmlhttp://www.cnblogs.com/Darren_code/archive/2... 阅读全文

posted @ 2014-03-09 22:45 dhj 阅读(185) 评论(0) 推荐(0) 编辑

2014年2月12日

前端开发利器webStorm 3.0配置使用

摘要: 安装了phpstorm之后,想配置svn,结果在file->settings->Version Contorl->subversion->with conmand line client配置成D:\Program Files\TortoiseSVN\bin\tortoisePro.exe(一般的... 阅读全文

posted @ 2014-02-12 13:44 dhj 阅读(202) 评论(0) 推荐(0) 编辑

2014年2月9日

exports和moudle. exports

摘要: http://zihua.li/2012/03/use-module-exports-or-exports-in-node/https://github.com/seajs/seajs/issues/242exportsObjectexports是一个对象,用来向外提供模块接口。define(fu... 阅读全文

posted @ 2014-02-09 22:49 dhj 阅读(173) 评论(0) 推荐(0) 编辑

2014年2月8日

Web前端开发工程师编程能力飞升之路

摘要: http://www.cnblogs.com/lwgdream/p/3344234.html【背景】如果你是刚进入web前端研发领域,想试试这潭水有多深,看这篇文章吧;如果你是做了两三年web产品前端研发,迷茫找不着提高之路,看这篇文章吧;如果你是四五年的前端开发高手,没有难题能难得住你的寂寞高手... 阅读全文

posted @ 2014-02-08 18:08 dhj 阅读(172) 评论(0) 推荐(0) 编辑

commonJS\AMD\CMD

摘要: http://blog.youyo.name/archives/commonjs-amd-cmd-my-opinion.htmlhttp://blog.youyo.name/archives/commonjs-amd-cmd-my-opinion.html 阅读全文

posted @ 2014-02-08 18:02 dhj 阅读(87) 评论(0) 推荐(0) 编辑

2014年2月7日

js正则替换十六进制

摘要: var re=/\x62/;//没有0,也没有分号。alert(re.test("blue"));//output "true"需要使用<如需显示小于号,我们必须这样写:< 或 < 阅读全文

posted @ 2014-02-07 18:02 dhj 阅读(1106) 评论(0) 推荐(0) 编辑

JS获取粘贴内容

摘要: http://classjs.com/2013/03/05/js%E8%8E%B7%E5%8F%96%E7%B2%98%E8%B4%B4%E5%86%85%E5%AE%B9/思路:在编辑环境中,粘贴时先记录光标在编辑器中的位置,再创建一个空的div,并且设置为可编辑的(contenteditabl... 阅读全文

posted @ 2014-02-07 17:19 dhj 阅读(2618) 评论(0) 推荐(0) 编辑

2014年2月3日

ajax跨域访问总结

摘要: 1,jsonp的使用就是script引用别的站点js,利用回调把内容传给这个js。a需要引入b,在页面上引入b的js,里面有b的函数,在a中执行,就能拿到json了。程序B中test.js的代码:1 //调用callback函数,并以json数据形式作为阐述传递,完成回调2 callback({m... 阅读全文

posted @ 2014-02-03 22:19 dhj 阅读(133) 评论(0) 推荐(0) 编辑

2014年1月14日

Google JavaScript代码风格指南

摘要: Google JavaScript代码风格指南修正版本 2.28Aaron Whyte Bob Jervis Dan Pupius Eric Arvidsson Fritz Schneider Robby Walker每个风格点都有一个展开/收起按钮以便你可以... 阅读全文

posted @ 2014-01-14 16:39 dhj 阅读(349) 评论(0) 推荐(0) 编辑

2014年1月12日

需要坚持,能写出自己满意的内容

摘要: 2014年开始,关于前端技术,希望自己继续不断总结。将原创的卸载这里吧。 阅读全文

posted @ 2014-01-12 23:00 dhj 阅读(107) 评论(0) 推荐(0) 编辑

2013年12月24日

nodejs笔记

摘要: 入门http://www.nodebeginner.org/index-zh-cn.html#a-full-blown-web-application-with-nodejshttp://www.kuqin.com/webpagedesign/20110812/105100.htmlD:\>npm... 阅读全文

posted @ 2013-12-24 20:29 dhj 阅读(113) 评论(0) 推荐(0) 编辑

2013年12月18日

Tomcat 7.0.3x 启动慢并且遇到StackOverflowError的异常的解决办法

摘要: http://qiuboboy.iteye.com/blog/1853216使用tomcat 7.0.3x版本的同学可以发现tomcat启动慢了不少,而且还可能遇到如下启动时异常:Unable to complete the scan for annotations for web applica... 阅读全文

posted @ 2013-12-18 11:24 dhj 阅读(304) 评论(0) 推荐(0) 编辑

国管公积金取房本

摘要: 1、抵押中心82011234 问是否到银行2、建行的前门支行 67087056 阅读全文

posted @ 2013-12-18 11:07 dhj 阅读(591) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 55 下一页

导航