将值添加到表单并使用 jquery 提交将其发送到服务器

发布于 2025-01-02 21:09:56 字数 368 浏览 0 评论 0原文

我有一个表单,所以

<button id="112" class="cc">EDIT</button>

我想做的是使用jquery提交功能并将按钮的id发送到服务器,我知道如何获取按钮的id,但是将jquery变量发送到服务器我找不到解决方案。这就是我到目前为止所做的,

$('.button').click(function(){var dd=this.id; $('form').attr("edit.php");$('form').submit(); 

在网上发现有提交(函数),但是我如何将变量 dd 发送到服务器,而不使用 AJAX。我想要正常形式提交

i have a form which has

<button id="112" class="cc">EDIT</button>

so what i want to do is to use jquery submit function and send the id of button to server, i know how to get the id of button , but sending a jquery variable to server i cant find a solution. this is what i have done so far

$('.button').click(function(){var dd=this.id; $('form').attr("edit.php");$('form').submit(); 

found on net there is submit(function) but how can i send variable dd to server, WITHOUT using AJAX. i want normal form submit

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

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

发布评论

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

评论(1

暗喜 2025-01-09 21:09:56

将其添加为 url 变量

$('.button').click(function(){
      $('form').attr("action", "edit.php?id="+ this.id).submit();
});

然后使用 GET 检索它,如果您使用 php 它将是 $_GET['id']

Add it as a url varible

$('.button').click(function(){
      $('form').attr("action", "edit.php?id="+ this.id).submit();
});

Then retrieve it use GET , if you're using php it will be $_GET['id'] .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文