struts下 怎么运用javascript做的左右移除列表
最好把整个页面丢上来看下哈.
还有截取 移除过去的id 的action ,action只要截取id那个语段就好
[解决办法]
怎么设置ID?
<html:select property="select1">
<html:option value="1">1 </html:option>
<html:option value="2">2 </html:option>
</html:select>
这里不是有个property吗?这个对应你ActionForm里的一个属性,它会自动设值的
[解决办法]
<s:select multiple="true" theme="simple" name="codeCurrent" list="list" listKey="code" listValue="%{code+'---'+name}">
</s:select>
codeCurrent 当前选中的
list 结果集
listKey 结果集中对象的的code
listValue 结果集中对象的name等,自己拼接