当前位置 : 主页 > 网络编程 > JavaScript >

jquery插件方法2

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt $.dialog={ alert:function(set){ }, confirm:function(set){ }, load:function(set){ }, close:function(set){ }}function defaults(set){ var defaults={ }; return $.extend(defaults,set);}function addMask(){$("body").append('');}funct
gistfile1.txt
$.dialog={
    alert:function(set){

    },
    confirm:function(set){

    },
    load:function(set){

    },
    close:function(set){

    }
}

function defaults(set){
    var defaults={

    };
    return $.extend(defaults,set);
}

function addMask(){
	$("body").append('');
}

function getLeft(width){
	return 50-50*width/$(document).width();
}
function getTop(height){
	return 50-50*height/$(document).height();
}
上一篇:jquery插件方法3
下一篇:ajax请求模板
网友评论