不包括.min文件
public static void RegisterBundles(BundleCollection bundles){ bundles.Add(new ScriptBundle("~/Scripts/jquery") .Include("~/Scripts/jquery-1.8.0.js") .Include("~/Scripts/jquery.tmpl.min.js")); }
<html> <head> @Scripts.Render("~/Scripts/jquery") </head><body>test</body></html>
<html> <head> <script src="/Scripts/jquery-1.8.0.js"></script> </head> <body>test</body></html>
拉风的咖菲猫