gpt4 book ai didi

javascript - JQuery 在 MVC 5 中可以很好地处理整数,但不能处理字符串

转载 作者:行者123 更新时间:2023-11-30 11:48:53 27 4
gpt4 key购买 nike

<分区>

Jquery 对整数 var 工作得很好,但对字符串有错误。我的代码如下。

@section Scripts {
<script type="text/javascript">
$(function () {
$.getJSON('/Service/ListServiceType', function (result) {
var ddl = $('#ServiceType');
var type = @Model.Type;
ddl.empty();
$(result).each(function () {
$(document.createElement('option'))
.attr('value', this.Type)
.text(this.Type)
.appendTo(ddl);
});
$("#ServiceType").find("option").each(function () {
alert($(this).val())
if ($(this).val() == type) {

$(this).prop("selected", "selected");
}
});
});

$.getJSON('/Category/ListCategory', function (result) {
var ddl = $('#CategoryType');
var id = @Model.CategoryId;
ddl.empty();
$(result).each(function () {
$(document.createElement('option'))
.attr('value', this.Id)
.text(this.Name)
.appendTo(ddl);
});
$("#CategoryType").find("option").each(function () {

if ($(this).val() == id) {

$(this).prop("selected", "selected");
}
});
});
});

</script>
}

下部(/Category/ListCategory)工作得很好,但上部不行。由于我是 JQuery 和 Javascript 的新手,所以能提供一点帮助是非常有用的。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com