jstree上没有明确默认点击事件时如何触发点击事件

发布于 2024-09-15 20:30:02 字数 1659 浏览 12 评论 0原文

使用jstree,我使用下一个代码来触发单击,但是,我看不到默认的单击事件,例如:单击时的蓝色背景,

这是我的代码:

<div id="wrap">
    <div id="header">header</div>
    <div id="main">
        <div id="demo1" style="float:left;width:50%;">
            <ul>
                <li>
                    <a id='a' href="">aaa</a>
                    <!-- UL node only needed for children - omit if there are no children -->
                    <ul>
                        <li><a id="a_1" href="#"> bbb</a></li>
                        <li><a id="a_2" href="#"> ccc</a></li>
                    </ul>
                </li>
            </ul>

        </div>
        <div id="content">www</div>
    </div>
</div>

<div id="footer">
    footer
</div>
<script type="text/javascript">
    $(function () {
    $("#demo1").jstree({
        "themes": {
        "theme": "default",
        "dots": true,
        "icons": true,
        "url": "themes/default/style.css"
      },

        "plugins" : [ "themes", "html_data" ]
    });
    $('#a_1').click(function(){
            $('#content').html('bbb \'s content')
            //return false;
        })
    $('#a_2').click(function(){
            $('#content').html('ccc \'s content')
            //return false;
        })
});
</script>

我找到了一些这样的代码:

.bind("create.jstree", function (e, data) {
            alert(data)
        })

其含义是:警报数据当有人创建一个新文件时,

jstree有像“click.jstree”这样的方法吗

谢谢

using jstree, i use the next code to Trigger click , but , i can not see the defalut click event, like : the blue background when i click ,

this is my code :

<div id="wrap">
    <div id="header">header</div>
    <div id="main">
        <div id="demo1" style="float:left;width:50%;">
            <ul>
                <li>
                    <a id='a' href="">aaa</a>
                    <!-- UL node only needed for children - omit if there are no children -->
                    <ul>
                        <li><a id="a_1" href="#"> bbb</a></li>
                        <li><a id="a_2" href="#"> ccc</a></li>
                    </ul>
                </li>
            </ul>

        </div>
        <div id="content">www</div>
    </div>
</div>

<div id="footer">
    footer
</div>
<script type="text/javascript">
    $(function () {
    $("#demo1").jstree({
        "themes": {
        "theme": "default",
        "dots": true,
        "icons": true,
        "url": "themes/default/style.css"
      },

        "plugins" : [ "themes", "html_data" ]
    });
    $('#a_1').click(function(){
            $('#content').html('bbb \'s content')
            //return false;
        })
    $('#a_2').click(function(){
            $('#content').html('ccc \'s content')
            //return false;
        })
});
</script>

i find some code like this :

.bind("create.jstree", function (e, data) {
            alert(data)
        })

its mean is : alert data when someone cerate a new file ,

so

does jstree has a method like "click.jstree" ?

thanks

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

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

发布评论

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

评论(1

这样的小城市 2024-09-22 20:30:02

你所拥有的在事件方面很好,你只是缺少一个插件......在新的 1.0 模型中,ui 位是一个单独的插件,如果你只是将你的插件从这里更改

"plugins" : [ "themes", "html_data" ]

为:

"plugins" : [ "themes", "html_data", "ui" ]

你将得到当前节点选择着色,您可以在这里尝试一下

What you have is fine on the events side, you're just missing a plugin...in the new 1.0 model the ui bits are a separate plugin, if you just change your plugins from this:

"plugins" : [ "themes", "html_data" ]

To this:

"plugins" : [ "themes", "html_data", "ui" ]

You'll get the current node selection coloring, you can give it a try here.

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