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.
这不是ajax,而是简单得多。
我所拥有的是一堆字段并呈现为html。我网站的访问者将访问该页面并填写表格并单击“提交”按钮。
我有一些由运行在该网页上的 javascript/jquery 收集的数据。我希望烧瓶在 POST(作为 JSON)中接收该数据,以及其他“正常”表单值。
我怎样才能做到这一点?
在表单中使用隐藏字段:
<input type="hidden" value="">
然后使用 jQuery 的submit()方法在提交表单时拦截表单并在那里添加您的 json。
submit()