0

我有 ASP.Net MVC 4 Internet 应用程序,我正在使用 'redmond' jQuery UI。我尝试了 http://jqueryuihelpers.apphb.com/Docmo/GettingStarted建议的所有步骤

仍然只有,对话框和框架图标在 UI 主题中可见,所有其他控件都在正常主题中。

我将 redmond 文件夹复制到 ~/Content/themes 文件夹中。复制 ~/scripts 文件夹中的 .js 文件。

在 BundleConfig.cs 中添加了以下捆绑包,

bundles.add(new stylebundle("~/content/themes/base/css").include(
    "~/content/themes/redmond/jquery-ui-1.9.2.custom.css",
    "~/content/themes/redmond/jquery-ui-1.9.2.custom.min.css"));

在 MVC 4 应用程序的 Site.Master 中添加了以下参考,

<link href="<%: Url.Content("~/Content/themes/redmond/jquery-ui-1.9.2.custom.css") %>" type="text/css" rel="stylesheet" />

我尝试在 Razor 视图引擎和 ASPX (C#) 视图引擎中使用 jQuery UI,两者都只显示 jQuery UI 主题中的对话框和框架图标,所有其他控件(如按钮和手风琴等)不在 jQuery UI 主题中。

任何猜测,可能发生了什么?

4

1 回答 1

2

将以下脚本添加到头部而不是正文

@Scripts.Render("~/bundles/jquery") 

@Scripts.Render("~/bundles/jqueryui")
于 2013-05-03T16:41:08.813 回答