Jstree 1.0rc api调用

		$("#search").click(function () {
	        $(".tree").jstree("search",$("#search_str").val());
	    });


"search"就是api中提供的那些方法 这样调用

/* METHOD TWO */
jQuery.jstree._reference(needle) 
	/* NEEDLE can be a DOM node or selector for the container or a node within the container */
	.operation_name([ argument_1, argument_2, ...]);


下划线开头的方法只能用这种方式调用。

你可能感兴趣的:(java,jquery)