我在頁面上有兩個列表框,&我需要藉助javascript在它們之間移動項目。 這是我的標記:在列表框之間移動項目
<asp:ListBox ID="ListBox1" Height="300px" runat="server" AppendDataBoundItems="true"
SelectionMode="Multiple"></asp:ListBox>
<div>
<asp:ImageButton ID="ButtonRight" runat="server" ImageUrl="~/Images/right.gif" OnClientClick="return
LeftToRightMoveItems('AddSetup');" /><br />
<br />
<asp:ImageButton ID="ButtonLeft" runat="server" ImageUrl="~/Images/left.gif" OnClientClick="return
RightToLeftMoveItems('AddSetup');" />
</div>
<asp:ListBox ID="ListBox2" Height="300px" runat="server" AppendDataBoundItems="true"
SelectionMode="Multiple"></asp:ListBox>
這裏是我的javascript代碼:
的Javascript:
function LeftToRightMoveItems() {
try {
if (status == "AddSetup") {
var varFromBox = document.getElementById("<%=ListBox1.ClientID%>").options;
var varToBox = document.getElementById("<%=ListBox2.ClientID%>").options;
}
alert(varFromBox.length);
alert(varToBox.length);
if ((varFromBox != null)) {
if (varFromBox.length < 1) {
alert('There are no items to move!');
return false;
}
if (varFromBox.options.selectedIndex == -1) // when no Item is selected the index will be -1
{
alert('Please select an item to move!');
return false;
}
while (varFromBox.options.selectedIndex >= 0) {
var newOption = new Option(); // Create a new instance of ListItem
newOption.text = varFromBox.options[varFromBox.options.selectedIndex].text;
newOption.value = varFromBox.options[varFromBox.options.selectedIndex].value;
varToBox.options[varToBox.length] = newOption; //Append the item in Target Listbox
varFromBox.remove(varFromBox.options.selectedIndex); //Remove the item from Source Listbox
}
}
}
catch (e) {
alert("Following error occured : \n" + e.description);
}
return false;
}
在頁面加載,我填寫ListBox1
項目。但在alert()
我收到0項。
HTML看起來像:
<SELECT style="HEIGHT: 300px" id=ListBox1 multiple size=4 name=ctl00$ContentPlaceHolderNewSys$TabContainerMain$tabPanelAdd$tabContainerInnerAdd$tabPanelAdd_1$ListBoxAll1> <OPTION value=1>param1</OPTION> <OPTION value=2>param2</OPTION> <OPTION value=3>param3</OPTION></SELECT>
如果你能後從瀏覽器頁面加載後,它會在調試這個問題有用的HTML源代碼。 –
更新了問題。請看一下。 – benjamin54
我想我找到了問題,再給它一次。 –