开发者

Why is jquery progressbar giving the following error: Object [object Object] has no method 'progressbar'?

开发者 https://www.devze.com 2023-03-28 11:37 出处:网络
Im trying to add a progressBar to my site. I have looked at http://docs.jquery.com/UI/Progressbar and written the following code:

Im trying to add a progressBar to my site. I have looked at http://docs.jquery.com/UI/Progressbar and written the following code:

<div>
<h2>@Model.First().Category.category_name</h2>
<div id="progressBar"></div> 
</div>

And

$开发者_运维知识库(document).ready(function () {

$("#progressBar").progressbar({ value: 37 });

}

But Chrome displays the following error:

Uncaught TypeError: Object [object Object] has no method 'progressbar'

I am using

<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>

How can i fix this? Thanks


Read the section "Basic overview: using jQuery UI on a web page" in the JQuery UI Documentation. I suspect that you don't have all the includes you need. Also check your paths.

0

精彩评论

暂无评论...
验证码 换一张
取 消