基本上经过大量工作后,我终于设法在我的 ASP.NET MVC4 项目中使用 Bootstrap 启动并运行。
这是我的文件夹结构:
这是我的捆绑配置:
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/bootstrapjs").Include(
"~/Scripts/bootstrap.js"));
bundles.Add(new ScriptBundle("~/Content/bootstrapcss").Include(
"~/Content/bootstrap.css",
"~/Content/bootstrap-responsive.css"));
}
但是,当我尝试添加带有图标的 HTML 元素时:
<button type="submit" class="btn"><i class="icon-search"></i></button>
图标不出现。