我试过搜索这个,所有的答案都在我头上,只是让我感到困惑和沮丧......我要做的就是从选择的左侧列表中选择一个选项,移动到右侧列表当我单击一个按钮时。这是我正在尝试使用的脚本,它对我不起作用......
function moveRight() {
var selItem = document.forms[0].leftList.selectedIndex;
if (selItem == -1) {
window.alert("You must first select an item on the left side.")
}
else {
var selText = document.forms[0].leftList[selItem].text;
var selValue = document.forms[0].leftList[selItem].value;
var nextItem = document.forms[0].rightList.length;
document.forms[0].rightList[nextItem].text = selText;
document.forms[0].rightList[nextItem].value = selValue;
}
}
关于如何在不使事情过于复杂的情况下完成这项工作的任何想法?