Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用javascript填充后select,我无法获得价值。我的选择是multiple时代。 单击保存后的此代码必须显示方法select中的所有项目.live()。 该代码不起作用,如果不单击选项,我无法获取所有选项。
select
multiple
.live()
演示版
$('[name="to[]"] option')
将返回所有选项。
见小提琴
我可以修复问题。
$('#saveToDb').live("click",function(){ $('[name="to[]"] option').prop('selected',true) alert($('[name="to[]"]').val()) //alert($('[name="to[]"] option').serializeArray()); });