摘要: http://akquinet.github.com/jquery-toastmessage-plugin/ jquery-toastmessage-plugin by akquinetjquery-toastmessage-plugin is a JQuery plugin which provides android-like notification messages. It's a quite nice way to report info or error to the user. jquery-toastmessage-plugin's main features 阅读全文
posted @ 2011-12-23 16:00 火腿骑士 阅读(422) 评论(0) 推荐(0) 编辑
摘要: <!--[if IE 6]><link href="/lcarmen16/templates/l-carmentheme/css/ie6.css" rel="stylesheet" type="text/css" media="screen" /><![endif]--><!--[if IE 7]><link href="/lcarmen16/templates/l-carmentheme/css/ie.css" rel="styl 阅读全文
posted @ 2011-12-23 14:42 火腿骑士 阅读(208) 评论(0) 推荐(0) 编辑
摘要: http://themeforest.net/ http://themeforest.net/item/wapp-html/full_screen_preview/1125888http://themeforest.net/item/lcarmen-clean-joomla-theme/full_screen_preview/407500http://demo.joomforest.com/j17/jf_chrome/http://a-smartik.com//themeforest/html/xsystem11/skin1/charts.htmlhttp://portalik.flyfm.n 阅读全文
posted @ 2011-12-23 11:43 火腿骑士 阅读(193) 评论(0) 推荐(0) 编辑
摘要: jbase.js 业务框架基类/*** @class: Jbase * @description: 定制框架基类* @author: fangxianghua*/var Jbase = function() { this.namespace = "Jbase";//命名空间 this.version = "2.0.0"; //版本 this.parent = null; this.className = "Jbase";};/*** @function: extend * @description: 父子类继承函数* @author: 阅读全文
posted @ 2011-12-23 11:05 火腿骑士 阅读(352) 评论(0) 推荐(0) 编辑
摘要: jQuery是目前使用最广泛的javascript函数库。据统计,全世界排名前100万的网站,有46%使用jQuery,远远超过其他库。微软公司甚至把jQuery作为他们的官方库。对于网页开发者来说,学会jQuery是必要的。因为它让你了解业界最通用的技术,为将来学习更高级的库打下基础,并且确实可以很轻松地做出许多复杂的效果。虽然jQuery上手简单,比其他库容易学会,但是要全面掌握,却不轻松。因为它涉及到网页开发的方方面面,提供的各种方法和内部变化有上千种之多。初学者常常感到,入门很方便,提高很困难。目前,互联网上最好的jQuery入门教材,是Rebecca Murphey写的《jQuery 阅读全文
posted @ 2011-12-23 10:57 火腿骑士 阅读(146) 评论(0) 推荐(0) 编辑
摘要: jQuery最佳实践分享按钮 作者: 阮一峰日期: 2011年8月 4日上周,我整理了《jQuery设计思想》。那篇文章是一篇入门教程,从设计思想的角度,讲解"怎么使用jQuery"。今天的文章则是更进一步,讲解"如何用好jQuery"。我主要参考了Addy Osmani的PPT《提高jQuery性能的诀窍》(jQuery Proven Performance Tips And Tricks)。他是jQuery开发团队的成员,具有一定的权威性,提出的结论都有测试数据支持,非常有价值。==================================== 阅读全文
posted @ 2011-12-23 10:52 火腿骑士 阅读(118) 评论(0) 推荐(0) 编辑
摘要: jquery方式:为a元素绑定一个处理点击事件的函数:$('a').click(function(){ alert($(this).attr('id'));});javascript原生方式:$('a').click(function(){ alert(this.id); });总结:上面$(this)与this.id作用域所指对象皆指a元素,但速度this.id原生方式快于$(this)20倍。-----------------------------------------------------------------------jquer 阅读全文
posted @ 2011-12-23 10:49 火腿骑士 阅读(281) 评论(0) 推荐(0) 编辑