如何在php(jquery插件)中将onclick事件添加到treeview?

时间:2010-02-10 10:53:05

标签: php treeview events

我已经在php中实现了异步treeview,现在我想将onclick事件添加到treeview中的项目,然后在mysql中进行查询。

你知道怎么做吗?

非常感谢。

编辑:

Async.html:

<script type="text/javascript">
$(document).ready(function(){
    $("#black").treeview({
        url: "twodimen.php"
    });
    $("#black > li").live("click",function()){
        $.get("");
    })
});
</script>

<ul id="black">
</ul>

但是当我添加$("#black > li").live("click", function()){}时,树视图不会显示。

怎么做?

1 个答案:

答案 0 :(得分:1)

嗯,这将是一个开始:

$("#treeview > li").click(function() { // this sets the onclick on your node
    $.get('url_to_php_script_that_will_the_db'); // this calls an url using GET.
    $.post('url_to_php_script_that_will_the_db'); // this calls an url using POST.
}

假设您的树视图具有id“treeview”,树视图下的所有<li>都会有一个点击事件。这是一个艰难的开始,但这基本上就是你要找的东西。