DropDownList 选定值属性未被复制
我有 HTML 表,用户可以在其中进行 GRUD 操作。但大家都知道 jQuery 序列化方法仅适用于表单。因此,我将当前行克隆为隐藏表单,然后将其序列化并将数据发布到服务器。但我对 DropDownList 有问题。
因此,当我克隆当前行时,除了 DropDownList 的选定值之外,一切都很顺利。我编写了一些 JavaScript 代码来解决这个问题。克隆后我写了
$('#clonedForm select#ConsumptionType').val($("#dataTable tbody tr:first select#ConsumptionType").val());
它解决了我的问题。但我想知道问题出在哪里。简单的文本框值被复制,但为什么下拉列表没有被复制?
我正在使用 jQuery 1.1.3。
I have HTML table in which user make GRUD operations. But everyone knows that jQuery serialize method works only with forms. So I am cloning current row to hidden form and then serialize it and posting data to server. But I have problem with DropDownList.
So when I am cloning current row all goes well except the selected value of DropDownList. I have wrote little JavaScript code to solve it. After cloning I wrote it
$('#clonedForm select#ConsumptionType').val($("#dataTable tbody tr:first select#ConsumptionType").val());
It solved my problem. But I want to know where is problem. Simple textbox value is getting copied, but why is dropdownlist not?
I am using jQuery 1.1.3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个关于此问题的问题单。
There is a ticket about this issue.