@Render.Scripts in plain .html file - not in .cshtml
问题 I'm wondering - is it possible to add something like @Scripts.Render("~/bundles/jquery") in plain .html file (not the .cshtml file) 回答1: Yes, it is, you can use: <script src="/Scripts/jquery1.js"></script> <script src="/Scripts/jquery2.js"></script> <script src="/Scripts/jquery3.js"></script> Where jquery1.js, jquery2.js, jquery3.js are the files of the jquery bundle... 来源: https://stackoverflow.com/questions/37362389/render-scripts-in-plain-html-file-not-in-cshtml