首页 > 代码库 > JQuery Option 排序
JQuery Option 排序
<script type="text/javascript"> $(document).ready(function () { $("select").each(function (key, val) { SortOption($(this)); }); }); function SortOption(slc) { var i = 0; var ops = ""; var outdata = http://www.mamicode.com/[];"option").each(function (key, val) { outdata[i] = { ID: parseInt($(val).val()), Option: $(val)[0].outerHTML }; i++; }); var jdata = http://www.mamicode.com/outdata.sortObjectWith("ID", "asc", "fix"); $.each(jdata, function (key, item) { ops += item.Option; }); slc.html(""); slc.html(ops); } Array.prototype.sortObjectWith = function (key, t, fix) { if (!this.length) { return this; } t = t === ‘desc‘ ? ‘desc‘ : ‘asc‘; fix = Object.prototype.toString.apply(fix) === ‘[object Function]‘ ? fix : function (key) { return key; }; switch (Object.prototype.toString.apply(fix.call({}, this[0][key]))) { case ‘[object Number]‘: return this.sort(function (a, b) { return t === ‘asc‘ ? (fix.call({}, a[key]) - fix.call({}, b[key])) : (fix.call({}, b[key]) - fix.call({}, a[key])); }); case ‘[object String]‘: return this.sort(function (a, b) { return t === ‘asc‘ ? fix.call({}, a[key]).localeCompare(fix.call({}, b[key])) : fix.call({}, b[key]).localeCompare(fix.call({}, a[key])); }); default: return this; } } </script>
JQuery Option 排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。