我们可以在另一个表单的字段集中创建一个ajax表单吗?
这可能吗?
ajax 表单的目的是充当主表单的选择器。
Is this possible?
The ajax form's purpose is to serve as a selector for the main form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单不能嵌套。
顺便说一句,您不需要为此目的提供表格。只需发送 AJAX 请求,无需任何表单。
在表单外部放置一组选择/一组单选按钮,分配
onchange
处理程序,然后在其中执行您想要的任何操作。例如 - 发送 AJAX 查询并修改表单。Forms cannot be nested.
Btw, you don't need a form for that purpose. Just send AJAX request without any form.
Put a select/set of radio buttons outside the form, assign
onchange
handler and in it do whatever you want. For example - send AJAX query and modify the form.