jquery.radioList.js
4.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/**
* 显示一单选框组
* 作者:黄平
* 日期:2016-08-13
*/
(function($) {
$.fn.radioList = function(options, param) {
var self = this;
if (typeof (options) == "string") {
var method = $.fn.radioList.methods[options];
if (method){
return method.call(this, param);
}
}
return this.each(function() {
var opt = $.extend({}, $.fn.radioList.defaults, options);
$(self).data("radioList", opt)
_create(self);
});
};
/**
* 创建
* @param jq
* @returns
*/
function _create(jq) {
var opt = jq.data("radioList");
if (opt.onBeforeLoad.call(jq) === false) {
return;
}
if (opt.url) {
$.post(opt.url, opt.queryParams, function(data) {
if (opt.loadFilter) {
data = opt.loadFilter(data);
}
opt.data = data;
_showRadio(jq);
}, opt.dataType);
} else {
_showRadio(jq);
}
}
/**
* 显示
* @param jq
* @returns
*/
function _showRadio(jq) {
var opt = jq.data("radioList");
if (!opt.data || opt.data.length == 0) {
jq.loadSuccess();
return;
}
var p;
$(opt.data).each(function(index, item) {
if (index == 0 || (opt.rowMaxSize > 0 && index % opt.rowMaxSize == 0)) {
p = $("<div>").appendTo(jq);
}
var radio = $("<input type='radio'>").data("radioList-item", item).click(function() {
opt.onClick.call(this, item[opt.valueField], item);
}).attr({
id : opt.name + "_" + index,
name : opt.name,
value : item[opt.valueField]
}).css({
"margin-left" : opt.spaceWidth
}).prop("checked", (item[opt.checkedField] || item[opt.valueField] == opt.defaultValue) ? true : false);
p.append(radio);
/*if (item[opt.checkedField] || item[opt.valueField] == opt.defaultValue) {
radio.click();
}*/
p.append($("<label>").attr("for", opt.name + "_" + index).html(item[opt.textField]));
});
if (opt.onLoadSuccess) {
opt.onLoadSuccess.call(jq, opt.data);
}
jq.loadSuccess();
}
/**
* 获取选中的值
* @param jq
* @returns
*/
function _getCheckedValue(jq) {
return _getCheckedObj(jq).val();
}
/**
* 获取选中的文本
* @param jq
* @returns
*/
function _getCheckedText(jq) {
var opt = jq.data("radioList");
return _getCheckedObj(jq).data("radioList-item")[opt.textField];
}
/**
* 获取选中的对象
* @param jq
* @returns
*/
function _getCheckedObj(jq) {
return jq.find("input[type='radio']:checked");
}
/**
* 根据值,获取对象
* @param jq
* @returns
*/
function _getRadio(jq, value) {
return jq.find("input[type='radio'][value='"+ value +"']");
}
/**
* 设置选中
* @param jq
* @param value
* @returns
*/
function _setChecked(jq, value) {
_getRadio(jq, value).prop("checked", true);
}
/**
* 获取所有的对象
* @param jq
* @returns
*/
function _getAllRadio(jq) {
return jq.find("input[type='radio']");
}
/**
* 获取所有的对象的数据
* @param jq
* @returns
*/
function _getAllRadioData(jq) {
var radio = _getAllRadio(jq);
if (!radio) {
return [];
}
var arr = [];
for (var i = 0; i < radio.length; i++) {
arr.push($(radio[i]).data("radioList-item"));
}
return arr;
}
/**
* 点击
* @param jq
* @param value
* @returns
*/
function _click(jq, value) {
if (!value) {
return;
}
var obj = _getRadio(jq, value);
obj.click();
}
$.fn.radioList.methods = {
/**
* 获取选中的对象
* @returns
*/
getCheckedObj : function() {
return _getCheckedObj(this);
},
/**
* 获取选中的值
* @returns
*/
getCheckedValue : function() {
return _getCheckedValue(this);
},
/**
* 获取选中的文本
* @returns
*/
getCheckedText : function() {
return _getCheckedText(this);
},
/**
* 获取选中的值
* @param value
* @returns
*/
setChecked : function(value) {
var self = this;
return this.each(function() {
_setChecked(self, value);
});
},
/**
* 根据值,获取对象
*/
getRadio : function(value) {
return _getRadio(this, value);
},
/**
* 获取所有的对象
*/
getAllRadio : function() {
return _getAllRadio(this);
},
/**
* 获取所有的对象的数据
*/
getAllRadioData : function() {
return _getAllRadioData(this);
},
/**
* 选择
*/
click : function(value) {
var jq = $(this);
return jq.each(function() {
_click(jq, value);
});
}
};
$.fn.radioList.event = {
onBeforeLoad : function() {},
onLoadSuccess : function(data) {},
onClick : function(value, record) {}
};
$.fn.radioList.defaults = $.extend({}, $.fn.radioList.event, {
textField : "text",
valueField : "value",
checkedField : "checked",
name : "",
url : null,
defaultValue : null,
queryParams : {},
loadFilter : function(data) {
return data;
},
dataType : "json",
spaceWidth : 20, //间隔
rowMaxSize : 0, //每行最多个数
data : [] //数据,如果数据中有属性为checked=true,则选中该radio
});
})(jQuery);