摘要: aaaa ... 阅读全文
posted @ 2011-07-26 17:11 sirzxj 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 鼠标点击按钮弹出层,背景变暗丨芯晴网页特效丨CsrCode.Cn 阅读全文
posted @ 2011-07-06 16:06 sirzxj 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-07-05 14:38 sirzxj 阅读(296) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <style type="text/css">div{color:Yellow;text-align:center; line-height:300px; vertecal-align:middle;} #yuanjiao { width:300px; height:300px; background:Blue; border-radius:15px; -moz-border-radius:15px; } #yinying { width:300px; height:30 阅读全文
posted @ 2011-07-04 12:07 sirzxj 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-07-02 13:59 sirzxj 阅读(102) 评论(0) 推荐(0) 编辑
摘要: aaaaaaaaaaaaaaa 阅读全文
posted @ 2011-07-02 09:08 sirzxj 阅读(882) 评论(0) 推荐(0) 编辑
摘要: JQuery 阅读全文
posted @ 2011-07-01 13:31 sirzxj 阅读(121) 评论(0) 推荐(0) 编辑
摘要: function extend(Child, Parent) { var F = function(){}; F.prototype = Parent.prototype; Child.prototype = new F(); Child.prototype.constructor = Child; Child.uber = Parent.pr... 阅读全文
posted @ 2011-06-29 09:22 sirzxj 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 所有的实例对象共享同一个prototype对象,那么从外界看起来,prototype对象就好像是实例对象的原型,而实例对象则好像"继承"了prototype对象一样。 阅读全文
posted @ 2011-06-28 11:34 sirzxj 阅读(165) 评论(0) 推荐(0) 编辑
摘要: this是Javascript语言的一个关键字。 它代表函数运行时,自动生成的一个内部对象,只能在函数内部使用。比如, function test(){ this.x = 1; } 随着函数使用场合的不同,this的值会发生变化。但是有一个总的原则,那就是this指的是,调用函数的那个对象。 下面分四种情况,详细讨论this的用法。 情况一:纯粹的函数调用 ... 阅读全文
posted @ 2011-06-28 09:39 sirzxj 阅读(98) 评论(0) 推荐(0) 编辑