类级别开发jQuery插件方法

1.直接给jquery添加全局函数

jQuery.myAlert=function(str){
    alert(str);
}
jQuery.myAlert2=function(str){
    alert(str);
}

2.用extend()方法

jQuer.extend({
	myAlert:function(str){
		alert(str);
	},
	myAlert2:function(str){
		alert(22222);
	}

});

调用:

var a = “哈哈”;
$.myAlert(a);

3.使用命名空间

jQuery.haha={
	myAlert:function(str){
		alert(str);
	}
 }

调用:

var a = “哈哈”;
$.haha.myAlert(a);

div js居中

<div id="div1"></div>
<script type="text/javascript">
var div = $('#div1');
div.css({
	'top':($(window).height()-div.height())/2,
	'left':($(window).width()-div.width())/2,
	'position':'absolute'
});


你可能感兴趣的:(类级别开发jQuery插件方法)