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