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

How to get the selected node of zTree on the parent page_javascript skills

WBOY
Release: 2016-05-16 16:14:21
Original
1234 people have browsed it

The example in this article describes the method of getting the zTree selected node on the parent page. Share it with everyone for your reference. The details are as follows:

Put zTree in an iframe:

zTreeObj = $("#treeDemo").zTree(setting, zNodes);

Copy after login

If you are on the current page, pass

var nodes = zTreeObj.getCheckedNodes(); 
Copy after login

That’s it

So how do you get the selected node of zTree when you click the button on the parent page?

Assume that the id and name of the iframe are aa (both id and name are set, compatibility issue)

window.frames['aa'].window.zTreeObj.getCheckedNodes();
Copy after login

That’s it

I hope this article will be helpful to everyone’s JavaScript programming design.

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