连接2 JSON值并序列化JavaScript
在我的网络表单中,我有一个输入字段,我想从用户那里获取输入并与我的 onw 值连接,例如用户输入 123、我的值 test 以及最终结果将与 POST 一起发送为 test123。我该怎么办,该怎么做?
<form>
<input type="text" id="test" name="test">
</form>
AJAX
$(document).ready(function() {
if ($("#formid").length) {
$("#formid").submit(function(event) {
var form = $(this);
var url = form.attr('action');
$.ajax({
type: "POST",
url: url,
data: form.serialize(),
//success...
In my webform I have an input field and I want to take input from the user and concatenate with my onw value like user input 123, my value test and the final result that would be send with the POST to be test123. What should I do, how to do this?
<form>
<input type="text" id="test" name="test">
</form>
AJAX
$(document).ready(function() {
if ($("#formid").length) {
$("#formid").submit(function(event) {
var form = $(this);
var url = form.attr('action');
$.ajax({
type: "POST",
url: url,
data: form.serialize(),
//success...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论