Home > Web Front-end > JS Tutorial > body text

How do two zTree interact with each other?

php中世界最好的语言
Release: 2018-03-15 14:56:59
Original
1955 people have browsed it

This time I will show you how to link two zTree with each other. What are the precautions for linking two zTree with each other? The following is a practical case, let’s take a look.

Introduction

zTree uses the core code of JQuery to implement a set of Tree that can complete most common functions Plug-in

  • Compatible with IE, FireFox, Chrome and other browsers

  • Can generate multiple Tree instances simultaneously in one page

  • Support JSON data

  • Support one-time static generation and Ajax asynchronous loading

  • Support multiple events Response and feedback

  • Supports tree node movement, editing,

    delete

  • Supports any change of skin/personalized icon (Relying on css)

  • Supports extremely flexible checkbox or radio selection function

  • Simple parameter configuration realizes flexible and changeable functions

Introduction

When we were developing today, we needed to implement two trees on the left and right of the same page due to requirements. If a certain tree was selected A certain node of the tree, the corresponding node of another tree is also selected. (The two trees are related. Of course, you can change the linkage conditions and methods according to your own needs).

The code of the implementation tree is no longer pasted here, only the method to achieve linkage is shown.

The effect is as shown:

The effect is as shown

Code:

function linkageTreeClick(event, treeId, treeNode) {
  var param = treeNode.id; //获得点击树的ID
  var otherTree = $.fn.zTree.getZTreeObj(treeId);
  // 选取树的所有节点
  var nodes = otherTree.getNodesByParam(param);
  //遍历树的节点
  for (var i in nodes) {
   if(param==nodes[i].id){
    otherTree.selectNode(nodes[i]);
    return;
   }
  }
 }
Copy after login
Where treeId is the ID of the tree you want to link with, call this method in the

onclick method of zTree, pass in the parameters according to your own situation, and then implement linkage.

Method

selectNode()The parameter is the node of the tree, and its function is to make the node selected.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use webpack to write jquery environment configuration

How does jQuery’s Validate plug-in verify the input value

#What to do if there is no reflection after the ajax request for background data is successful

Usage of jQuery EasyUI folding panel

The above is the detailed content of How do two zTree interact with each other?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!