连接2 JSON值并序列化JavaScript

发布于 2025-01-17 10:46:56 字数 643 浏览 0 评论 0原文

在我的网络表单中,我有一个输入字段,我想从用户那里获取输入并与我的 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文