//메서드 정의
$.windowbox = {
//aa 메소드 정의
aa: function(){
alert("aa")
},
//bb 메소드 정의
bb: function(){
alert("bb");
}
}
$.windowbox.aa() //$.windowbox에서 aa 메소드 호출
// 매개변수 전달
var aa = function(x ){
//객체 x에서 aa 변수와 bb 변수를 팝업합니다
alert(x.aa "I Successed" x.bb);
}
$. windowbox = aa;
$.windowbox({
aa: "하하",
bb: "라라"
})
방법 1:
jQuery.fn.setApDiv=function () {
//apDiv float 레이어 표시 위치 중심 제어
var wheight=$(window).height()
var wwidth=$(window).width()
var apHeight=wheight -$("#apDiv") .height();
var apWidth=wwidth-$("#apDiv").width()
$("#apDiv").css("top", apHeight/2);
$("#apDiv").css("left",apWidth/2);
}
호출 방법: $("#apDiv") .setApDiv();
방법 2:
//jQuery 애플리케이션 확장
jQuery .extend({
//Set apDiv
setApDiv:function () {
//apDiv 부동 레이어 표시 위치 중심 제어
var wheight=$ (window).height();
var wwidth=$(window).width();
var apHeight=wheight-$("#apDiv").height()
var apWidth=wwidth -$("#apDiv").width( );
$("#apDiv").css("top",apHeight/2)
$("#apDiv").css("왼쪽 ",apWidth/2);
}
});
호출 메서드: $.setApDiv();
$.extend({ 'aa':function(){}}), 이는 $.aa()를 호출할 때의 경우이고, 다른 하나는 $.fn.extend({'aa':function(){}})입니다. 호출 방법, $(this).aa()
방법 3:
$.postJSON = function(url, data, callback) {
$.post(url, data, callback, "json")
}; 🎜>호출 방법: $.postJSON('/post/getsecurejsonpost',{ }, function(data) {})