jquery.loadSuccess.js
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* 设置插件加载完成
* 作者:黄平
* 日期:2016-08-13
*/
(function($) {
$.fn.loadSuccess = function(options, param) {
var self = this;
if (typeof (options) == "string") {
var method = $.fn.loadSuccess.methods[options];
if (method){
return method.call(this, param);
}
}
return this.each(function() {
var opt = $.extend({}, $.fn.loadSuccess.defaults, options);
$(self).data("loadSuccess", opt)
_create(self);
});
};
/**
* 创建
* @param jq
* @returns
*/
function _create(jq) {
_setLoadSuccess(jq);
}
/**
* 设置加载完成
* @param jq
* @returns
*/
function _setLoadSuccess(jq) {
jq.attr("load-status", "1");
}
/**
* 获取是否加载完成
* @param jq
* @returns
*/
function _isLoadSuccess(jq) {
return jq.attr("load-status") == 1;
}
$.fn.loadSuccess.methods = {
isLoadSuccess : function() {
return _isLoadSuccess(this);
},
isNotLoadSuccess : function() {
return !_isLoadSuccess(this);
}
};
$.fn.loadSuccess.event = {
};
$.fn.loadSuccess.defaults = $.extend({}, $.fn.loadSuccess.event, {
});
})(jQuery);