gpt4 book ai didi

c# - ('...' ).each 不是带有 jquery 包的 asp.net core mvc 的有效函数

转载 作者:太空宇宙 更新时间:2023-11-03 21:00:51 25 4
gpt4 key购买 nike

重新发布此内容是因为我找不到任何不涉及使用 Google 的 bundle 或其他东西的答案。如果我遗漏了任何细节,请告诉我,所以我会添加它。我在 _Layout 的顶部引用了 VS 中包含的整个 jquery 包...

@Scripts.Render("~/bundles/jquery")

这是 BundleConfig.cs

public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));

bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));

// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}

...但在这种情况下它仍然告诉我 .each 不是一个函数。我缺少什么或需要引用布局或 BundleConfig?为什么 .each 不是 Visual Studio 2017 附带的 jquery 包的一部分?

@Html.ListBox("Groups", null, new { size = 10, style = "width : 350px; max-width : 500px;", id = "grouplist" })

我的 jquery 的整个上下文:

    $('#savegroups').click(function () {
var groupId = $('#groupId').val();
var list = [];
('#grouplist').each(function (item) {
list.append('{"groupId":"' + groupId + '","groupName":"' + item.value +'"}');
});
$.ajax({
type: "POST",
url: "/GroupCategories/EditGroups",
data: JSON.stringify(list),
});
});

错误:

1:230 Uncaught TypeError: "#grouplist".each is not a function
at HTMLInputElement.<anonymous> (1:230)
at HTMLInputElement.dispatch (jquery:1)
at HTMLInputElement.y.handle (jquery:1)

最佳答案

看起来您缺少 jquery 选择器..

('#grouplist')

应该是

$('#grouplist option')

关于c# - ('...' ).each 不是带有 jquery 包的 asp.net core mvc 的有效函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45719130/

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