上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 92 下一页
http://weblogs.asp.net/scottgu/archive/2010/05/07/jquery-templates-and-data-linking-and-microsoft-contributing-to-jquery.aspxjQuery Templates, Data Link, and Globalization Accepted as Official jQuery ... Read More
posted @ 2010-11-03 12:30 庚武 Views(602) Comments(0) Diggs(0) Edit
If a copy of the libraries is physically part of the executable, then we say the executable has been statically linked.if the executable merely contains filnames that enable the loader to find the pro... Read More
posted @ 2010-11-02 18:16 庚武 Views(348) Comments(0) Diggs(0) Edit
Objects in C must have exactly one definition, and they may have mutiple external declarations.Definition: occurs in only one place. specifies the type of an object; reserves storage for it; it is use... Read More
posted @ 2010-11-02 16:53 庚武 Views(158) Comments(0) Diggs(0) Edit
Symbol Meaning static Inside a function, retains its value between callsAt the function level, visible only in this file. extern Applied to a function definition, has global scope(and is redundant)App... Read More
posted @ 2010-11-02 01:16 庚武 Views(151) Comments(0) Diggs(0) Edit
//use: $("selector").inputOnlyNum();只输入数字 (function($) { $.fn.inputOnlyNum = function() { this.keypress(function(e) { if (e.which == 8 || e.keyCode == 9) return true; //Backspace & Tab in ff var ... Read More
posted @ 2010-11-01 13:26 庚武 Views(933) Comments(0) Diggs(0) Edit
http://sz.chachaba.com/api.html Read More
posted @ 2010-11-01 13:22 庚武 Views(548) Comments(0) Diggs(0) Edit
该文被密码保护。 Read More
posted @ 2010-11-01 08:22 庚武 Views(1) Comments(0) Diggs(0) Edit
XPath 是一门在 XML 文档中查找信息的语言。XPath 用于在 XML 文档中通过元素和属性进行导航。什么是 XPath?XPath 使用路径表达式在 XML 文档中进行导航XPath 包含一个标准函数库XPath 是 XSLT 中的主要元素XPath 是一个 W3C 标准XPath 路径表达式XPath 使用路径表达式来选取 XML 文档中的节点或者节点集。这些路径表达式和我们在常规的电... Read More
posted @ 2010-10-30 11:26 庚武 Views(540) Comments(0) Diggs(0) Edit
该文被密码保护。 Read More
posted @ 2010-10-28 13:46 庚武 Views(3) Comments(0) Diggs(0) Edit
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace SingletonDemo{ public sealed class Singleton { private Singleton() { } private static... Read More
posted @ 2010-10-28 00:42 庚武 Views(310) Comments(0) Diggs(0) Edit
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 92 下一页