摘要: jQuery 的attr()与css()的区别 1.attr是用来获得或设置标签属性的(attribute的缩写) var myId = $("#myId"); myId.attr("data-name", "baidu"); // 设置属性名data-name,值baidu // 结果为 : <d 阅读全文
posted @ 2017-04-20 22:46 Lu_Lu陌鹿 阅读(7716) 评论(1) 推荐(0) 编辑
摘要: 数组有关的知识点 1:数组的length属性是可读写的 可通过设置length长度来移除或添加新的新项 2:检测数组方法 1)instanceof常常用来判断某个变量是否属于某个对象的实例 eg:var a=new Array(); alert(a instanceof Array);//true 阅读全文
posted @ 2017-04-20 20:32 Lu_Lu陌鹿 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 创建对象的方法之一:原型模式 eg:function Person(){ }Person.prototype.name="zhaolu";Person.prototype.age=24;Person.prototype.job="Software Engineer";Person.prototype 阅读全文
posted @ 2017-04-20 19:56 Lu_Lu陌鹿 阅读(186) 评论(0) 推荐(0) 编辑