使用 JQuery 从输入文本框发送文本?
谁能告诉我如何发送输入文本框中的文本?
我一直在使用这个:
$.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为输入框提供 id 而不仅仅是名称,并将变量设置为:
Give the input boxes the id's rather than just the name and set the variables as:
设置:
获取:
Set:
Get:
要将某些内容放入您已设置的输入文本框中,请设置其值。输入文本框内部不接受 HTML。
在 JQuery 中,您可以使用
val()
函数来执行此操作,或者在 DOM 节点上设置 Javascriptvalue
属性。如果我理解您想要正确执行的操作,那么这就是您需要的代码:
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 Javascriptvalue
property on a DOM node.If I am understanding what you want to do correctly, this is the code you would need: