ASP.NET 和js树

发布于 2024-10-15 19:53:50 字数 1348 浏览 5 评论 0原文

我有这个中继器:

 <asp:Repeater ID="rptContentPageGetAll" runat="server" OnLoad="rptContentPagesGetAll_Load">
        <HeaderTemplate>
            <ul class="contentPageTree">
        </HeaderTemplate>
        <ItemTemplate>
            <li><%# Eval("title") %></li>
        </ItemTemplate>
        <FooterTemplate>
            </ul>
        </FooterTemplate>
 </asp:Repeater>

我尝试了 Scripts.js 中的核心代码:

jQuery(".contentPageTree")
.jstree({
    core : { },
    plugins : [ "themes", "html_data", "some-other-plugin" ]
});

没有任何效果,我尝试环顾四周,发现任何东西都不起作用。有人可以帮助我开始吗?

另外我的js结构如下:

js

-> jsTree.v.1.0

->-> jQuery.jstree.js

jquery.min.js

script.js

是的,我将 js 文件包含在我的母版页中

<script language="javascript" src="../js/jsTree.v.1.0/_lib/jquery.js" type="text/javascript"></script>
<script language="javascript" src="../js/jsTree.v.1.0/jquery.jstree.js" type="text/javascript"></script>
<script language="javascript" src="../js/jsTree.v.1.0/_lib/jquery.cookie.js" type="text/javascript"></script>
<script language="javascript" src="../js/scripts.js" type="text/javascript"></script>

I have this repeater:

 <asp:Repeater ID="rptContentPageGetAll" runat="server" OnLoad="rptContentPagesGetAll_Load">
        <HeaderTemplate>
            <ul class="contentPageTree">
        </HeaderTemplate>
        <ItemTemplate>
            <li><%# Eval("title") %></li>
        </ItemTemplate>
        <FooterTemplate>
            </ul>
        </FooterTemplate>
 </asp:Repeater>

and I tried the core code in Scripts.js:

jQuery(".contentPageTree")
.jstree({
    core : { },
    plugins : [ "themes", "html_data", "some-other-plugin" ]
});

Nothing was working, I tried looking around and anything i found didn't work. Can anyone help me getting started?

Also my js structure is as followed:

js

-> jsTree.v.1.0

->-> jQuery.jstree.js

jquery.min.js

scripts.js

and yes I am including the js files in my master page

<script language="javascript" src="../js/jsTree.v.1.0/_lib/jquery.js" type="text/javascript"></script>
<script language="javascript" src="../js/jsTree.v.1.0/jquery.jstree.js" type="text/javascript"></script>
<script language="javascript" src="../js/jsTree.v.1.0/_lib/jquery.cookie.js" type="text/javascript"></script>
<script language="javascript" src="../js/scripts.js" type="text/javascript"></script>

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

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

发布评论

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

评论(1

唯憾梦倾城 2024-10-22 19:53:50
  • 检查引用JS文件是否有问题。
  • 我不太明白你的脚本顺序。您应该首先拥有 jQuery,然后是树脚本,最后是您自己的脚本。
  • 您是否在 HTML 页面中尝试过使用所有核心选项、插件和 JS 顺序?这应该有帮助。
  • Check if there are any problems in referencing the JS files.
  • I didn't quite get your scripts order. You should have jQuery very first, then the tree script, then your own at the last
  • Did you try it in HTML page with all the core options and plugins and JS order? This should help.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文