使用 JQuery 从输入文本框发送文本?

发布于 2024-10-30 23:03:26 字数 276 浏览 2 评论 0原文

谁能告诉我如何发送输入文本框中的文本?
我一直在使用这个:

    $.get("registernext.php", { uname: uname, pass1: pass1, pass2: pass2, email: email },
function(data){
    $("#mainNotes").html(data);
});

任何人都可以建议如何让它工作吗? :)
文本框与我要使用的变量具有相同的名称。

感谢您的帮助!

Can anyone tell me how to send the text inside an input textbox?
I've been using this:

    $.get("registernext.php", { uname: uname, pass1: pass1, pass2: pass2, email: email },
function(data){
    $("#mainNotes").html(data);
});

Can anyone suggest how to get this working? :)
The text boxes have the same name as the variables I want to use.

Thanks for the help!

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

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

发布评论

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

评论(3

若无相欠,怎会相见 2024-11-06 23:03:26

为输入框提供 id 而不仅仅是名称,并将变量设置为:

$.get("registernext.php", { "uname": $("#uname").val(), "pass1": $("#pass1").val(), "pass2": $("#pass2").val(), "email": $("#email").val() },
function(data){
    $("#mainNotes").html(data);
});

Give the input boxes the id's rather than just the name and set the variables as:

$.get("registernext.php", { "uname": $("#uname").val(), "pass1": $("#pass1").val(), "pass2": $("#pass2").val(), "email": $("#email").val() },
function(data){
    $("#mainNotes").html(data);
});
红衣飘飘貌似仙 2024-11-06 23:03:26

设置:

$("#someInputId").val("Value you want it to have here");

获取:

$("#someInputId").val(); // returns value of #someInputId

Set:

$("#someInputId").val("Value you want it to have here");

Get:

$("#someInputId").val(); // returns value of #someInputId
蓝礼 2024-11-06 23:03:26

要将某些内容放入您已设置的输入文本框中,请设置其值。输入文本框内部不接受 HTML。

在 JQuery 中,您可以使用 val() 函数来执行此操作,或者在 DOM 节点上设置 Javascript value 属性。

如果我理解您想要正确执行的操作,那么这就是您需要的代码:

$.get("registernext.php", 
 { uname: uname, pass1: pass1, pass2: pass2, email: email },
 function(data){
   for(var i in data){
    $("#" + i.toString()).val(data[i]);
   }
 });

To put something inside of an input textbox you have set set it's value. Input textboxes do not accept HTML inside of them.

In JQuery, you can use the val() function to do this, or set the Javascript value property on a DOM node.

If I am understanding what you want to do correctly, this is the code you would need:

$.get("registernext.php", 
 { uname: uname, pass1: pass1, pass2: pass2, email: email },
 function(data){
   for(var i in data){
    $("#" + i.toString()).val(data[i]);
   }
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文