如何更改jquery中禁用的下拉列表的选定值
我想通过单击按钮将禁用下拉列表的选定值更改为其他值。设法更改该值,但问题是当我提交表单时,先前选择的值已提交。
$("#RatesImplementation").click(function () {
$('#DrpDwnRequestStatus').val('Rates Implementation').trigger('change');
$('#DrpDwnNextStage').val('Implementation Approval').trigger('change');
});
这不会设置选项的选定属性。 任何帮助将不胜感激。谢谢!
我是用于提交禁用字段值的隐藏变量。
$("#RatesImplementation").click(function () {
$('#DrpDwnRequestStatus').val('Rates Implementation').trigger('change');
$('#DrpDwnNextStage').val('Implementation Approval ').trigger('change');
$('#hdnRequestStatus').val('Rates Implementation');
$('#hdnNextStage').val('Implementation Approval ')
});
I want to change the selected value to a disabled dropdownlist to someother value on a button click. Managed to change the value but the issue is when i submit the form previously selected value is submitted.
$("#RatesImplementation").click(function () {
$('#DrpDwnRequestStatus').val('Rates Implementation').trigger('change');
$('#DrpDwnNextStage').val('Implementation Approval').trigger('change');
});
this wont set selected attribute for the option.
Any help would be appreciated.Thanks!
I was hidden variable for submitting the disabled field value.
$("#RatesImplementation").click(function () {
$('#DrpDwnRequestStatus').val('Rates Implementation').trigger('change');
$('#DrpDwnNextStage').val('Implementation Approval ').trigger('change');
$('#hdnRequestStatus').val('Rates Implementation');
$('#hdnNextStage').val('Implementation Approval ')
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论