答案 0 :(得分:0)
您可以为此添加另一个模型属性,并使用jquery或使用formcollection在select事件期间设置它。
答案 1 :(得分:0)
这不是一个好习惯,只有类型id应该足够,并且使用它作为汽车类型本身的参考,不应该是你所描述的另一个字段,因为这将是多余的。
无论如何,解决方案是为CarType添加隐藏字段,并在更改cartypeid时更新其值。 像这样的东西
$('#CarTypeId').on('change', function(){
// this will get the text of the selected option
var theText = $('#CarTypeId').find(":selected").text();
//Update value of the hidden field
$('#CarType').val(theText);
});