3

我正在尝试使用 jquery-ui 在 Rails 中的应用程序中添加一个简单的进度条。我正在关注这个例子:http: //jqueryui.com/progressbar/

我创建了 div

<div id="progressbar"></div>

在我的 JS 中,我有

$(document).ready( function() {
  $("#progressbar").progressbar({
    value: 37
  });
});

但是 html 中的 div 没有任何反应——它保持为空且未设置样式(即没有对其应用额外的 CSS)。

我检查了我的应用程序中是否包含 jquery-ui - 特别是,我已经确定包含 jquery-ui css 文件。

但是,我愿意打赌这个问题与 jquery-ui 在我的应用程序中无法正常工作有关,因为我遇到了另一个问题,它和工具提示功能,我在这里询问过:定位 jQuery 工具提示

这让我发疯了,有人有什么想法吗?

4

1 回答 1

0

我现在有同样的问题。

似乎示例中引用的库不起作用。
我从“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 源,它可以工作。

于 2014-10-10T12:49:32.663 回答