Home  >  Article  >  Web Front-end  >  How to get the selected node of zTree on the parent page_javascript skills

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

WBOY
WBOYOriginal
2016-05-16 16:14:211192browse

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);

If you are on the current page, pass

var nodes = zTreeObj.getCheckedNodes(); 

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();

That’s it

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

Statement:
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