ASP.NETMVC在没有调试器的情况下运行时JQuery出错。
创始人
2024-09-19 08:30:29
0次
- 确保在视图中引入了正确的JQuery文件。
- 确认在web.config文件中的system.web节点下的compilation节点中的debug属性值为false。
- 对于使用BundleConfig打包的JQuery文件,需要在BundleConfig类的RegisterBundles方法中添加一行.IgnoreList.Ignore(".min.js"),以确保即使在没有调试器的情况下运行,也可以加载未压缩的JQuery文件。
public static void RegisterBundles(BundleCollection bundles)
{
bundles.IgnoreList.Ignore(".min.js");
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
}
相关内容