提交不在表单标签中的输入值

发布于 2024-11-07 20:46:43 字数 127 浏览 0 评论 0原文

你好 我正在使用 Jquery 我有很多输入字段,但它们不在

标记中 我如何提交字段值?

它必须是简单的提交而不是ajax

谢谢

Hi
i'm using Jquery
and i have many input fileds but they are not in <form> tag
How can i submit the fields value?

It must bu simple submit not ajax

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花坊 2024-11-14 20:46:43

如果您想使用浏览器的提交而不使用 XHR,则需要将输入元素包装在表单中并提交。

$('#something :input')
 .wrapAll('<form action="somewhere.php" method="post" />')
 .submit();

If you want to use the browser's submit and not use XHR, you'll need to wrap the input elements in a form and submit it.

$('#something :input')
 .wrapAll('<form action="somewhere.php" method="post" />')
 .submit();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文