簡體   English   中英

('...')。對於帶有jquery包的asp.net核心mvc,每個都不是有效函數

[英]('…').each not a valid function for asp.net core mvc with jquery bundle

重新發布此內容是因為我找不到任何不涉及使用Google捆綁軟件或其他工具的答案。 請告訴我是否缺少任何細節,所以我將其添加。 我在_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')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM