使用 Javascript 提取表单数据(带有一些 ReST)
我知道这个问题可能已经被问过十几次了,但我有点困惑。
我有一个表单:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
替换:
jQuery的
ajax 数据属性采用一个对象,并将该对象格式化为正确的字符串你。
Replace:
with
jQuery's ajax data property takes an object and will format that object into the proper string for you.