今天用 Jquery EasyUI1.3.1 +.net mvc4做了个布局框架 发现Jquery EasyUI1.3.1中 所有带min的js 都会加载错误
//JqueryEasyUI-js
bundles.Add(new ScriptBundle("~/bundles/jqueryeasyui").Include(
"~/Content/jquery-easyui-1.3.1/jquery180min.js",
"~/Content/jquery-easyui-1.3.1/jquery.easyuimin.js",
"~/Content/jquery-easyui-1.3.1/locale/easyui-lang-zh_CN.js"
));
bundles.Add(new StyleBundle("~/Content/jqueryeasyuithemes").Include(
"~/Content/jquery-easyui-1.3.1/themes/icon.css",
"~/Content/jquery-easyui-1.3.1/themes/default/easyui.css"
));
如图所有带有min的JS都把"."去掉后就可以了。
不知道啥原因,难道是ScriptBundle压缩JS时命名起冲突了?
等待良人解答。