摘要:
面向对象编程 1.封装性 面向对象编程核心思想之一就是将数据和对数据的操作封装在一起,通过抽象即从具体的实例中抽取共同的性质形成一般的概念。 2.继承 子类可以继承父类的属性和功能,即子类继承了父类所有的数据和数据上的操作,同时又可以添加子类独有的数据和数据上的操作。 3.多态有两种意义的多态 1)操作名称的多态 2)和继承有关的... 阅读全文
摘要:
//重写trim方法if(!String.prototype.trim){ String.prototype.trim = function(){ return this.replace(/^\s+/,"").replace(/\s+$/,""); }} //写fntri... 阅读全文
摘要:
html: aaaa aaaa 1、负外补丁和正内补丁{margin-bottom:-(num)px;padding-bottom:(num)px;}相结合#container{ width:500px; margin:10p... 阅读全文
摘要:
//利用数组的indexOf方法,IE低版本不支持indexOf方法if (!Array.prototype.indexOf){ Array.prototype.indexOf = function(value){ for( var i=0;i<this.length;i++ )... 阅读全文
摘要:
/** * 搜索中的删除小图标功能与按backspace键删内容时事件,用于清空搜索框内的文字; * inputId:表单ID名称 如:searchKeys */ _clearSearchInput: function (inputId) { i... 阅读全文
摘要:
var key = $('#global_search_input').val(), titles; key=key.replace(/\+/gi,'\\+'); var re= new RegExp(key,'gi'); titles = titles.replace(re... 阅读全文
摘要:
arse用于从一个字符串中解析出json对象,如var str = '{"name":"huangxiaojian","age":"23"}'结果:JSON.parse(str)Objectage: "23"name: "huangxiaojian"__proto__: Object注意:单引号写在... 阅读全文
摘要:
var showLog = (function($){ function aaa(){ alert(1233444444); } aaa.show = function(){ alert(123) } aaa.alert = function(){ ... 阅读全文