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

移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决

程序员文章站 2024-01-25 21:45:04
...
移动到右边的,为什么要选中后提交才能获取到相应的值。
本帖最后由 qq914260102 于 2013-10-14 16:02:07 编辑 如果选到右边,是无法获取到值的,必须要点击一次,选中了才能获取到,怎么让右边的默认能获取值













sortitems = 1;  // Automatically sort items within lists? (1 or 0)
function move(fbox,tbox) {
for(var i=0; iif(fbox.options[i].selected && fbox.options[i].value != "") {
var no = new Option();
no.value = fbox.options[i].value;
no.text = fbox.options[i].text;
tbox.options[tbox.options.length] = no;
fbox.options[i].value = "";
fbox.options[i].text = "";
}
}
BumpUp(fbox);
if (sortitems) SortD(tbox);
}
function BumpUp(box) {
for(var i=0; iif(box.options[i].value == "") {
for(var j=i; jbox.options[j].value = box.options[j+1].value;
box.options[j].text = box.options[j+1].text;
}
var ln = i;
break;
}
}
if(ln box.options.length -= 1;
BumpUp(box);
}
}
function SortD(box) {
var temp_opts = new Array();
var temp = new Object();
for(var i=0; itemp_opts[i] = box.options[i];
}
for(var x=0; xfor(var y=(x+1); yif(temp_opts[x].text > temp_opts[y].text) {
temp = temp_opts[x].text;
temp_opts[x].text = temp_opts[y].text;
temp_opts[y].text = temp;
temp = temp_opts[x].value;
temp_opts[x].value = temp_opts[y].value;
temp_opts[y].value = temp;
}
}
}
for(var i=0; ibox.options[i].value = temp_opts[i].value;
box.options[i].text = temp_opts[i].text;
}
}

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决
  • 专题推荐

    作者信息
    移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决

    认证0级讲师

    推荐视频教程
  • 移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决javascript初级视频教程
  • 移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决jquery 基础视频教程
  • 视频教程分类