Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Fancytree jquery 插件来管理表单中的树结构。
我使用这样的示例代码从表单中提交值:
$("#parent").fancytree("getTree").generateFormElements(); var formData = $form.serializeArray();
它工作得很好,除了我想更改默认为 ft_1[] 的参数名称。有没有一种配置或方法可以将此参数名称更改为用户定义的名称?
generateFormElements(selected, active)接受布尔值或字符串参数。
generateFormElements(selected, active)
如果传递了字符串,则将其解释为元素名称:
$("#parent").fancytree("getTree").generateFormElements("selectedVar", "activeVar"); var formData = $form.serializeArray();