摘要:
NHibernate 是一个面向.NET 环境的对象/关系数据库映射工具。对象关系映射(O/R Mapping,Object Relational Mapping)表示一种技术,用来把对象模型表示的对象映射到基于SQL 的关系模型数据结构中去。NHibernate官方站点:http://nhforg... 阅读全文
摘要:
http://hi.baidu.com/ztxyzu/item/b3afbe0fdca0f133f2eafc51 阅读全文
摘要:
http://phonegap.com/ 阅读全文
摘要:
http://www.fineui.com/demo/# 阅读全文
摘要:
http://fex.baidu.com/code.html 阅读全文
摘要:
http://jquery.bootcss.com/ 阅读全文
摘要:
http://blog.webql.info/502 阅读全文
摘要:
今天遇到个问题:后退点击"后退"链接时,在IE,firefix下,history.go(-1)可以起到后退的作用,但在chrome下不起作用,要用history.go(-2)才生效。后来研究了一下,发现在IE,firefix中解析为执行onclick事件,即执行history.go(-1)页面就跳走... 阅读全文
摘要:
http://twitter.github.io/typeahead.js/https://github.com/twitter/typeahead.jsDEMO:http://twitter.github.io/typeahead.js/examples/http://www.w3cschool.... 阅读全文
摘要:
1.选择器(1)通配符: $("input[id^='code']");//id属性以code开始的所有input标签 $("input[id$='code']");//id属性以code结束的所有input标签 $("input[id*='code']");//id属性包含code的所有input... 阅读全文