jquery - 安装颜色选择器时遇到问题

标签 jquery html css

我找到了这个 project而且我不确定为什么它在我的应用程序中不起作用。我敢肯定这很简单,我只是想不通是什么...

错误: 类型错误:e.widget 不是函数 evol.colorpicker.min.js:10 TypeError: $(...).colorpicker 不是函数

我有 JQuery 2.1.1 JQuery 用户界面 1.11.1

JQuery

@section Scripts
{
    @Scripts.Render("~/Scripts/Custom/custom.js")
    @Scripts.Render("~/Scripts/Custom/evol.colorpicker.min.js")
}

Custom.js

$(document).ready(function () {
    $("#mycolor").colorpicker();
});

CSS

@section Styles
{
    @Styles.Render("~/Content/evol.colorpicker.css")
}

HTML

<div style="width:128px">
   <input style="width:100px;" id="mycolor" class="colorPicker evo-cp0" />
   <div class="evo-colorind" style="background-color:#8db3e2"></div>
</div>

bundle

     bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                    "~/Scripts/jquery-{version}.js"));

        bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
                    "~/Scripts/jquery-ui-{version}.js"));

        bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                    "~/Scripts/jquery.unobtrusive*",
                    "~/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 StyleBundle("~/Content/css").Include("~/Content/site.css"));

        bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
                    "~/Content/themes/base/jquery.ui.core.css",
                    "~/Content/themes/base/jquery.ui.resizable.css",
                    "~/Content/themes/base/jquery.ui.selectable.css",
                    "~/Content/themes/base/jquery.ui.accordion.css",
                    "~/Content/themes/base/jquery.ui.autocomplete.css",
                    "~/Content/themes/base/jquery.ui.button.css",
                    "~/Content/themes/base/jquery.ui.dialog.css",
                    "~/Content/themes/base/jquery.ui.slider.css",
                    "~/Content/themes/base/jquery.ui.tabs.css",
                    "~/Content/themes/base/jquery.ui.datepicker.css",
                    "~/Content/themes/base/jquery.ui.progressbar.css",
                    "~/Content/themes/base/jquery.ui.theme.css"));
    }
}

编辑脚本位置

@section Scripts
{
    @Scripts.Render("~/bundles/jqueryval")
    <script  type="text/javascript" src="@Url.Content("~/Scripts/Custom/custom.js")"></script>
    <script  type="text/javascript"  src="@Url.Content("~/Scripts/Custom/evol.colorpicker.min.js")" ></script>
}

最佳答案

你应该将脚本放在 bundlr 中

    @Scripts.Render("~/Scripts/Custom/custom.js")
    @Scripts.Render("~/Scripts/Custom/evol.colorpicker.min.js")

这不是包的名称。我想这些只是脚本名称。但是您使用它们作为包名称

尝试

<script src="@Url.Content("~/Scripts/Custom/custom.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/Custom/evol.colorpicker.min.js")" type="text/javascript"></script>

但将来会把这些脚本打包

关于jquery - 安装颜色选择器时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25692885/

相关文章:

javascript - 如何在 JSFiddle 上创建具有可调整大小的行和列(如 HTML、CSS、JS 框)的表格?

jquery - 使用服务器端异步时,Se​​rviceStack Forbidden (403) 错误作为内部服务器错误 (500) 返回

javascript - 每当 div 的底部超出视野时,使 div float

jquery - 如何在实景网站的Mobile View 中一键切换到桌面?

javascript - 使用单选按钮更改 Div 的背景图像

javascript - 如何在 Opencart 3.0 中按 sku 或按型号将产品添加到购物车

html - calc() CSS 属性如何在旧版浏览器中降级

css - 仅限文本渐变 Chrome 问题

css - ExtJS 4 - CSS - PropertyGrid 列标题/属性样式

javascript - 保持下拉列表向下滑动直到鼠标移到子项上的问题