上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页
摘要: 引用 李松峰 老师的PPT 1 var Person = function(living, age, gender) { 2 this.living = living; 3 this.age = age; 4 this.gender = gender; 5 }; 6 7 Person.prototype.getGender = function(){ 8 return this.gender; 9 };10 11 var child = new Person(true, 25, 'male');12 13 console.log (child.getGender()); ... 阅读全文
posted @ 2013-03-08 13:37 小猩猩君 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 感谢 天涯桑 提供 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="te 阅读全文
posted @ 2013-03-06 15:39 小猩猩君 阅读(522) 评论(0) 推荐(1) 编辑
摘要: 一、方法的定义call方法:语法:call(thisObj,Object)定义:调用一个对象的一个方法,以另一个对象替换当前对象。说明:call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文改变为由 thisObj 指定的新对象。如果没有提供 thisObj 参数,那么 Global 对象被用作 thisObj。apply方法:语法:apply(thisObj,[argArray])定义:应用某一对象的一个方法,用另一个对象替换当前对象。说明:如果 argArray 不是一个有效的数组或者不是 arguments 对象,那么将导致一个 TypeE 阅读全文
posted @ 2013-03-05 14:56 小猩猩君 阅读(39667) 评论(0) 推荐(4) 编辑
摘要: 感谢院长提供 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title></title> 5 6 <style type="text/css"> 7 8 div { 9 border: 1px solid #000; 10 overflow: auto; 11 height: 260px; 12 width: 300px; 13 } 14 15 #tester2{ 16 width: 200px; 17 height: 160px; 18 } 19 20 </sty 阅读全文
posted @ 2013-02-07 17:29 小猩猩君 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 1 var test = {};2 test.contentText = function() {3 var C = new Date();4 var contentHour = C.getHours();5 console.log(contentHour);6 };7 test.contentText(); 阅读全文
posted @ 2013-02-04 11:18 小猩猩君 阅读(140) 评论(0) 推荐(0) 编辑
摘要: <!--[if lt IE 9]><script src="jquery-1.9.0.js"></script><![endif]--><!--[if gte IE 9]><script src="jquery-2.0.0.js"></script><![endif]-->@司徒正美 大牛说了IE10下木有效果,我测试了一下,兼容模式可以,但是IE10正式模式下真的读不出这个条件加载,那以后要兼容所有IE只能选1.9.X版本了,不能用2.0.X版本IE9、IE 阅读全文
posted @ 2013-01-23 11:09 小猩猩君 阅读(1153) 评论(2) 推荐(0) 编辑
摘要: 1 $.setting('import imgLoader').then(function() {2 $.create('ImgLoader').load(['img1.gif', 'img2.gif', 'img3.gif']).then(function() {3 alert('加载完了');4 }, function(n) {5 alert('这是第' + n + '个');6 }, function() {7 alert('反正完了');8 } 阅读全文
posted @ 2012-12-26 16:42 小猩猩君 阅读(706) 评论(3) 推荐(0) 编辑
摘要: <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]--><!--[if IE]> 所有的IE可识别 <![endif]--><!--[if IE 6]> 仅IE6可识别 <![endif]--><!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]--><!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]--><!--[if IE 7]> 仅IE7 阅读全文
posted @ 2012-11-27 16:11 小猩猩君 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1 function say(word) {2 console.log(word);3 }4 5 function execute(someFunction, value) {6 someFunction(value);7 }8 9 execute(say, "Hello");网上找的一个经典的函数传递 阅读全文
posted @ 2012-11-12 16:13 小猩猩君 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 我是安装到私人项目里的,所以需要定位到项目文件夹里直接上图,有图有真相 阅读全文
posted @ 2012-11-11 13:58 小猩猩君 阅读(318) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页