使用 Javascript 提取表单数据(带有一些 ReST)

发布于 2024-12-03 03:49:35 字数 739 浏览 0 评论 0原文

我知道这个问题可能已经被问过十几次了,但我有点困惑。

我有一个表单:

<form id="login">

<label>Email</label>
<input id="email"/>


<label>First Name</label>
<input id="fName"/>


<label>Last Name</label>
<input id="lName"/>


<label>Phone #</label>
<input id="phone"/>

我正在使用的 ReST 调用是:

<script type="text/javascript">

$.ajax({
    url: 'http://example.com/',
    type: 'PUT',
    data: 'ID=1&fname=datagoeshere&lname=datagoeshere&email=datagoeshere', 
    success: function() { alert('PUT completed'); }
});


</script>

我想我所困惑的部分是如何提取 fname、lname 和电子邮件并将输入表单的信息粘贴到 ReST 调用中。该表单还发布到另一个表单。

I know this has probably been asked a dozen times, but I am kind of stumped.

I have a form:

<form id="login">

<label>Email</label>
<input id="email"/>


<label>First Name</label>
<input id="fName"/>


<label>Last Name</label>
<input id="lName"/>


<label>Phone #</label>
<input id="phone"/>

And the ReST call I am using is:

<script type="text/javascript">

$.ajax({
    url: 'http://example.com/',
    type: 'PUT',
    data: 'ID=1&fname=datagoeshere&lname=datagoeshere&email=datagoeshere', 
    success: function() { alert('PUT completed'); }
});


</script>

I guess the part I am stuck on is how to pull out just fname,lname and email and stick the information that gets entered into the form into the ReST call. The form is also posting to another form.

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

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

发布评论

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

评论(1

下雨或天晴 2024-12-10 03:49:35

替换:

'ID=1&fname=datagoeshere&lname=datagoeshere&email=datagoeshere'

jQuery的

{ ID: 1, fname: $('#fname').val(), lname: $('#lanme').val(), email: $('#email').val() }

ajax 数据属性采用一个对象,并将该对象格式化为正确的字符串你。

Replace:

'ID=1&fname=datagoeshere&lname=datagoeshere&email=datagoeshere'

with

{ ID: 1, fname: $('#fname').val(), lname: $('#lanme').val(), email: $('#email').val() }

jQuery's ajax data property takes an object and will format that object into the proper string for you.

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