我现在有同样的问题。
似乎示例中引用的库不起作用。
我从“Firefox - 开发者工具 - 浏览器控制台”得到的错误是:
ReferenceError: $ 未定义
(我在 Firefox 32.0.3 和 IE 11 上测试过)
如果您只是将示例 html/jquery 源代码从“ http://jqueryui.com/progressbar/ ”复制到本地文件(我们称之为:“testJqueryProgressBar.html”)并双击它,您将看不到进度条!
“testJqueryProgressBar.html”的来源:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Progressbar - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//jqueryui.com/resources/demos/style.css">
<script>
$(function()
{
$( "#progressbar" ).progressbar({ value: 37 });
});
</script>
</head>
<body>
<div id="progressbar"></div>
</body>
</html>
因此,我检查了示例标题中的链接,并且都引用了一些东西。所以链接是有效的!
我什至尝试从另一个提供商 fe 引用 jquery 库:https ://developers.google.com/speed/libraries/devguide?hl=de#jquery-ui 。同样的问题!
然后我去了http://jqueryui.com/download/
选择的版本:1.11.1(稳定,用于 jQuery1.6+) 在底部选择了不同的 UI 主题
下载了 zip 并在我的本地示例 testJqueryProgressBar.html 中引用了这些解压缩的 jquery 源,它可以工作。