我正在使用MVC和JQuery,并且遇到以下情况: 我有一个自动填充有ViewData [“ product”]的下拉列表(数据从控制器中的数据库传递到此viewdata),还有一个名为price的文本框, 我的目标是当用户选择一种产品时,价格文本框中应填充相应的产品价格,我有一个viewdata [“ retailprice”],这就是我到目前为止所得到的
$("#productname").change(function ()
{
getprice();
})
function getprice()
{
var productname = $("#productname").val();
var clienttype = $("#clienttype").val();
if (clienttype == "Retail")
{
var x = {};
for(x in JSON.parse('@Html.Raw(Json.Encode(ViewData["retailprice"]))'))
{
if(x == productname)
{
$("#productprice").val(x);
break;
}
}
}
}
json编码的值看起来像这样
[{"Disabled":false,"Group":null,"Selected":false,"Text":"1.75","Value":"1"},{"Disabled":false,"Group":null,"Selected":false,"Text":"2.50","Value":"2"},{"Disabled":false,"Group":null,"Selected":false,"Text":"4.90","Value":"3"},{"Disabled":false,"Group":null,"Selected":false,"Text":"4.70","Value":"4"},{"Disabled":false,"Group":null,"Selected":false,"Text":"8.70","Value":"6"},{"Disabled":false,"Group":null,"Selected":false,"Text":"50.00","Value":"10"}]
productname变量包含值属性ex。 “ 2”所以基本上我想做这样的事情
if(x.value == productname)
{
$("#productprice").val(x.text);
break;
}
我知道语法不正确,但这仅用于解释。 仅供参考,使用上述代码,当我更改产品名称下拉列表时,产品价格文本框仅将值更改为1或2或3或4,说实话我不知道这些值来自何处
答案 0 :(得分:0)
在循环here中检查for ..的文档。将代码更改为此:
const data = JSON.parse('@Html.Raw(Json.Encode(ViewData["retailprice"]))');
for(x in data)
{
if(data[x].Value == productname)
{
$("#productprice").val(data[x].Text);
break;
}
}