Closed. This question needs details or clarity. It is not currently accepting answers. Learn more。
想改进这个问题吗?添加细节并通过editing this post澄清问题。
四年前关闭。
alt text http://img14.imageshack.us/img14/5020/whatbox.png
我不知道这叫什么,但是你有两个列表,中间有一个按钮可以来回切换选项。
问题[a]这叫什么。
你怎么做的。
ASP代码(但只能使用html按钮和选择框)
想改进这个问题吗?添加细节并通过editing this post澄清问题。
四年前关闭。
alt text http://img14.imageshack.us/img14/5020/whatbox.png
我不知道这叫什么,但是你有两个列表,中间有一个按钮可以来回切换选项。
问题[a]这叫什么。
你怎么做的。
最佳答案
有些人称之为DualListBox,这里有一些jquery让它工作……这个例子实际上有按钮在列表框之间来回移动项目。
JQUERY公司
$(document).ready(function() {
$(".btnright").click(function() { $('select[name=ListBox1] option:selected').appendTo('.ListBox2'); });
$(".btnleft").click(function() { $('select[name=ListBox2] option:selected').appendTo('.ListBox1'); });
});
ASP代码(但只能使用html按钮和选择框)
<div>
<asp:ListBox ID="ListBox1" CssClass="ListBox1" runat="server">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
<asp:ListItem>5</asp:ListItem>
<asp:ListItem>6</asp:ListItem>
<asp:ListItem>7</asp:ListItem>
</asp:ListBox>
<asp:ListBox ID="ListBox2" CssClass="ListBox2" runat="server">
<asp:ListItem>8</asp:ListItem>
<asp:ListItem>9</asp:ListItem>
<asp:ListItem>10</asp:ListItem>
</asp:ListBox>
<br />
<span class='btnleft'><<< Left </span> <span class='btnright'>Right
>>> </span>
关于javascript - 这个表单元素叫什么以及如何做,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1543563/
10-10 09:30