我有级联参数,如国家和城市,它的工作很好......在列表框中,所以现在我必须将级联列表框的最后一级转换为多选加载如何实现?这在javascript:
country:<select id="country">
<option selected="selected">--Select Country--</option>
</select>
city:<select id="city">
<option selected="selected">--Select City--</option>
</select>
城市价值必须加载到此选择,因此城市单一 - 列表框必须隐藏然后只有值传递给此... multiselect ::
city multiple:<select multiple id="multiselect" style="width: 300px">
</select>