您现在的位置: 365建站网 > 365文章 > javascript API架子

javascript API架子

文章来源:365jz.com     点击数:135    更新时间:2009-09-14 10:29   参与评论


//Include syntactic sugar to help the development of out interface.
Function.prototype.method = function(name, fn){
    this.prototype[name] = fn;
    return this;
};

(function(){
    function _$(els){
        //...
    }
   
    /*
        Events
            * addEvent
            * getEvent
    */
    _$.method('addEvent', function(type, fn) {
        //...
    }).method('getEvent', function(e) {
        //...
   
    /*
        DOM
            * addClass
            * removeClass
            * replaceClass
            * hasClass
            * getStyle
            * setStyle
    */
    }).method('addClass', function(className) {
        //...
    }).method('removeClass', function(className) {
        //...
    }).method('replaceClass', function(olcClass, newClass) {
        //...
    }).method('hasClass', function(className) {
        //...
    }).method('getStyle', function(prop) {
        //...
    }).method('setStyle', function(prop, val) {
        //...
    /*
        AJAX
        * load. Fetches an HTML fragment from a URL and inserts it into an element.
       
    */
    }).method('load', function(url, method) {
        //...
    });
   
    window.$ = function(){
        return new _$(arguments);
    };
})();

 

 

 

 


window.API = window.API || function() {
    var name = 'Hello world';
    //Privileged mutator method.
    this.setName = function(newName){
        name = newName;
        return this;
    };
   
    this.getName = function(callback){
        callback.call(this, name);
        return this;
    };
};

var api = new API;
api.getName(console.log).setName('Meow').getName(console.log);

 

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (135人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号