欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

基于JQUERY的两个ListBox子项互相调整的实现代码_jquery

程序员文章站 2022-04-26 09:21:45
...
HTML:
复制代码 代码如下:















未选择颜色


已选择颜色



基于JQUERY的两个ListBox子项互相调整的实现代码_jquery
基于JQUERY的两个ListBox子项互相调整的实现代码_jquery





对应JS方法:
复制代码 代码如下:

function listMove(main, follow, hidetextbox, isBack, index) {
if (index return;
var o = undefined;
var source;
var distinct;
var dddd;
if (!isBack) {
//使用getElementById在IE6中存在BUG
source = $('#' + main);// window.document.getElementById(main);
distinct = $('#' + follow); //window.document.getElementById(follow);
}
else {
source = $('#' + follow); // window.document.getElementById(follow);
distinct = $('#' + main); // window.document.getElementById(main);
}
var hid = $('#' + hidetextbox)[0]; // document.getElementById(hidetextbox);
if (index != undefined) {
var op = "option:eq(" + index + ")";
source.find(op).each(function () {
distinct.append("");
$(this).remove();
});
}
else {
source.find("option:selected").each(function () {
$(this).remove();
distinct.append("");
});
}
var str = "";
//遍历Listbox,取得选中项的值
$('#' + main + ' option').each(function () {
str += $(this).val() + ',';
});
hid.value = str;
}