6

按照本教程(http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5 -and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4),我尝试通过 NuGet 安装 jQuery UI WIdgets:Datepicker 并收到以下错误:

试图解决依赖 'jQuery.UI.Core (= 1.8.9)'。

试图解决依赖 'jQuery (≥ 1.4.4 && < 1.6)'。

成功安装'jQuery 1.4.4'。

成功安装'jQuery.UI.Core 1.8.9'。

成功安装'jQuery.UI.Widgets.Datepicker 1.8.9'。

安装失败。滚回来...

将“jQuery 1.7.1.1”更新为“jQuery 1.4.4”失败。找不到与“jQuery 1.4.4”兼容的“jQuery.UI.Combined”版本。

这大概是因为我在其他解决方案中有 jQuery 1.7.1.1。我怎样才能解决这个问题?

如果我不能,是否有另一个我可以在 ASP .NET MVC 4(我是新手)中使用的日期选择器,并有明确的使用说明?

4

2 回答 2

7

我有完全相同的问题,所以我手动下载了小部件:http: //jqueryui.com/download/

提取文件夹并将我需要的脚本添加到我的项目中:

  • \jquery-ui-1.10.2.custom\jquery-ui-1.10.2.custom\development-bundle\themes\base\jquery.ui.datepicker.css
  • \jquery-ui-1.10.2.custom\jquery-ui-1.10.2.custom\development-bundle\ui\jquery.ui.datepicker.js

Nuget 安装失败的原因是包试图引用 jquery.1.4 而 MVC 4 需要更高的库。

希望能帮助到你...

于 2013-04-08T11:33:07.747 回答
0

这似乎是旧帖子,但像我这样的人稍后会在这篇帖子中看到我通过使用引导日期选择器而不是使用 jquery ui 日期选择器来解决这个问题。

于 2017-08-06T04:47:54.807 回答