jsTree / jQuery 树卡在“正在加载...”在 Chrome 上

发布于 2024-10-16 23:10:15 字数 1323 浏览 9 评论 0原文

我一直在使用 jsTree 设置一个网站来设计一些预定义的 HTML 列表的样式。我可能做了一些愚蠢的事情,但我一生都无法让它在 Chrome (v9.0) 上运行 - 它似乎在 Firefox 上运行良好,但 Chrome 只是卡在“正在加载...”屏幕。

我正在使用 jQuery 1.4.3 和 jsTree 1.0rc2 (也尝试过 jQuery 1.5,但没有帮助)。

我的缩减测试用例本质上只是 jsTree 网站的示例之一 - 但当我在 www.jstree.com 上查看演示时,它似乎可以在 Chrome 中工作:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
<head>
  <title>Test Page</title>
  <link rel="stylesheet" type="text/css" href="/media/css/site.css" />
  <script type="text/javascript" src="/media/js/jquery-1.4.3.min.js"></script>
  <script type="text/javascript" src="/media/js/jquery.jstree.js"></script>
</head>

<body>

<div id="demo">
  <ul>
    <li><a href="#">Root node 1</a></li>
    <li><a href="#">Root node 2</a></li>
  </ul>
</div>

<script type="text/javascript"><![CDATA[
$(function () {
    $("#demo").jstree({ "plugins" : [ "themes", "html_data" ] });
});
]]>
</script>

</body>
</html>

欢迎任何帮助 - 我很困惑......

谢谢, 伊索

I've been setting up a site using jsTree to style some pre-defined HTML lists. I'm probably doing something stupid, but I can't for the life of me get it working on Chrome (v9.0) - it seems to work fine on Firefox, but Chrome just gets stuck at a "Loading ..." screen.

I'm using jQuery 1.4.3 and jsTree 1.0rc2 (also tried jQuery 1.5, but doesn't help).

My cut down test case is essentially just one of the examples of the jsTree site - but it seems to work in Chrome when I view the demos on www.jstree.com:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
<head>
  <title>Test Page</title>
  <link rel="stylesheet" type="text/css" href="/media/css/site.css" />
  <script type="text/javascript" src="/media/js/jquery-1.4.3.min.js"></script>
  <script type="text/javascript" src="/media/js/jquery.jstree.js"></script>
</head>

<body>

<div id="demo">
  <ul>
    <li><a href="#">Root node 1</a></li>
    <li><a href="#">Root node 2</a></li>
  </ul>
</div>

<script type="text/javascript"><![CDATA[
$(function () {
    $("#demo").jstree({ "plugins" : [ "themes", "html_data" ] });
});
]]>
</script>

</body>
</html>

Any help welcome - I'm stumped ...

Thanks,
Iso

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜嗑 2024-10-23 23:10:15

啊 - 当 MIME 类型为 application/xhtml+xml 时,这是 jstree 1rc2 中的一个已知错误。

补丁和评论可以在这里找到:

http://code.google.com /p/jstree/issues/detail?id=776

Ah - it's a known bug in jstree 1rc2 when the MIME type is application/xhtml+xml.

Patch and comments can be found here:

http://code.google.com/p/jstree/issues/detail?id=776

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文