jquery树型选择插件treeselect

<script type='text/javascript'> jQuery(function() { $('div.chosentree').chosentree({ width: 500, deepLoad: true, load: function(node, callback) { /** * This would typically call jQuery.ajax to load a new node * on your server where you would return the tree structure * for the provided node. */ } }); }); </script> <div class="chosentree"></div>

猜你喜欢

转载自blog.csdn.net/u014742388/article/details/89010281