将值添加到表单并使用 jquery 提交将其发送到服务器
我有一个表单,所以
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加为 url 变量
然后使用 GET 检索它,如果您使用 php 它将是
$_GET['id']
。Add it as a url varible
Then retrieve it use GET , if you're using php it will be
$_GET['id']
.