gpt4 book ai didi

javascript - html 如何将用户字段输入作为 json 对象发送

转载 作者:行者123 更新时间:2023-11-30 12:45:48 25 4
gpt4 key购买 nike

我有一个表单,其中两个输入定义了用户名和密码,但我想将此输入作为 json 对象发送到服务器,这是我的 html 表单

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<form name="MY Form" action="Login" method="post">

userid<input type="text" name="username" id="username"> <br>
password<input type="password" name="password" id="password">
<br> <input type="submit" name="button1" value="login">
</form>
</body>
</html>

现在我如何将此数据作为 json 对象发送,我已经搜索过我可以使用 jquery 或 ajax,但我发现很难实现它,任何人都可以告诉我如何将它作为 json 发送。

最佳答案

您可以使用 .serialize() 方法发送您的数据。

$(function() {
$('input[name="button1"]').click(function() {
$.post(your_url, $(this).closest('form').serialize(), function(data) {
console.log(data);
});
});
});

使用对象作为数据是一样的效果:

$(function() {
$('input[name="button1"]').click(function() {
var data = {
username: $('#username').val(),
password: $('#password').val(),
};
$.post(your_url, data, function(data) {
console.log(data);
});
});
});

关于javascript - html 如何将用户字段输入作为 json 对象发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22524526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com