
Web 前端
zqc-tutorial
既是讲师,也是码农。
展开
-
jQuery学习:简单的渐入渐出图片切换
jQuery提供了渐入渐出的方法:.fadeIn()和.fadeOut(),利用这两个方法和其他方法,可以实现简单的渐入渐出图片切换动画。原创 2010-12-29 15:58:00 · 4104 阅读 · 0 评论 -
近期目标
已经浪费了太多时间在无用的事情上,现在要赶紧纠正自己,回到正常的轨道上来。年纪不小了,要认真利用一切可以利用的时间,努力在以下方面有一个明显的提升:LINQLINQ to SQLASP.NET Web Forms,主要是4.0版本的一些内容,包括路由、ListView控件、数据绑定、数据提供模型、安全性、AJAX、视图状态、用户控件、模块和处理程序以及缓存等内容。ASP.NET MVC原创 2012-09-25 00:11:53 · 515 阅读 · 0 评论 -
Anders Hejlsberg: Introducing TypeScript
视频地址:http://channel9.msdn.com/posts/Anders-Hejlsberg-Introducing-TypeScript?format=html5TypeScript 官网:http://www.typescriptlang.org/正如官网首页据说,TypeScript 是 JavaScript 的类型化超集,编译后生成标准的 JavaScript 代码。转载 2012-10-02 22:41:50 · 675 阅读 · 0 评论 -
网页中自动换行问题
用表格做网页排版的时候,一般都能正常使用。偏偏有时会碰到一段连续的英文词或者一堆感叹号(!!!)把网页就撑开的现象:(总结了一下,只要在CSS中定义了如下句子,可保网页不会再被撑开了。table{table-layout: fixed;}td(word-break: break-all; word-wrap:break-word;)注释一下:1.第一条table{table-l原创 2005-06-30 10:05:00 · 1377 阅读 · 0 评论 -
TypeScript Resources
TypeScript looks like a great start to evolving javascript. I am going to start playing with it seeing what it is like. This is the post I will update will all the resources I've found.Welco转载 2012-10-06 15:24:24 · 741 阅读 · 0 评论 -
TypeScript Released to Improve JavaScript Development
Microsoft released TypeScript this week as part of its efforts to improve JavaScript application development. Their new language is a superset of the JavaScript specification that adds type checking转载 2012-10-06 15:20:48 · 566 阅读 · 0 评论 -
Thoughts on TypeScript by Nicholas C. Zakas
Earlier this week, Microsoft released TypeScript[1], a new compile-to-JavaScript language for “application scale JavaScript.” My initial reaction was confusion:Nicholas C. Zakas@slicknet转载 2012-10-06 14:19:05 · 1139 阅读 · 0 评论 -
Why does TypeScript have to be the answer to anything?
DISCLAIMER: I don't work on TypeScript. I am not involved with that team and this is all my own opinion and conjecture.TypeScript was announced and folks are saying "TypeScript is clearly Micros转载 2012-10-06 10:02:45 · 944 阅读 · 0 评论 -
该停止责怪IE了
前天(7月12日),大牛Nicholas C. Zakas 发布了一篇博客:It's time to stop blaming Internet Explorer,讲述了以下观点:IE6/7尽管让很多人抱怨,但支持这样的浏览器依然是我们工作的一部分(If it’s our job to support those browsers then that’s just part of our原创 2012-07-14 11:48:42 · 594 阅读 · 0 评论 -
基础的 JavaScript 第1部分:函数
原文见:http://elegantcode.com/2010/10/22/basic-javascript-part-1-functions/,这里只是阅读摘要。 1. 自执行函数(Self-executing functions) 这样的函数在定义后会立即被调用执行。示例: ( function() { alert("Hellow Mars"); } ) () 这基本上就是一个匿名函数,而且会立即调用,因为最后有一对圆括号。可以为函数指定参数: ( function(planet) { ale原创 2011-01-23 21:42:00 · 626 阅读 · 0 评论