Jquery UI Spinner'不是一个功能'

时间:2013-01-04 02:36:21

标签: jquery jquery-ui

我希望有人可以帮助我,因为我读过的所有帖子似乎都表明旋转器直到1.9才被释放,我正在使用它。我收到一个错误,即.spinner不是一个函数。这是我的代码:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
    $(document).ready(function () {
        $( "#ingAmount" ).spinner();
    });
</script>

这是我的意见:

<input id="ingAmount" />

我已经使用了jquery UI库来完美地运行滑块,所以我不确定为什么它无法访问微调器。

谢谢!

1 个答案:

答案 0 :(得分:2)

我想出来了。我曾在Visual Studio中使用NuGet来安装AJAX Toolkit ......当我这样做时,它安装了一个没有微调器的旧版Jquery UI。即使我在我的页面上使用了正确的脚本,它仍然访问旧的脚本。我使用NuGet来更新jquery和jquery库,这些库又更新了与AJAX相关联的库。

(我感觉很傻......)