我正在尝试制作一个接收用户信息并将其发送到 SQL 数据库的 spotify 应用程序。但是,我不希望使用 ajax 来完成此操作,因为我希望提交信息以将用户移动到新页面,同时将信息发布到后台的数据库中。
到目前为止,这是我的代码:
function complete2() {
var name = document.getElementById("inputname").value;
var form = '<form action="http://site.net/dbconnect.php" method="post" style="display:none">' + '<input type="text" name="name" value="' + name + '">' + '</form>';
$('body').append(form);
$(form).submit();
}
</script>
</head>
<body>
<form id = "submitform" name = "submitform" action = "index.html" method = "POST" onsubmit = "complete2();" >
Name: <input type = "text" id = "inputname"> <br>
<input type = "submit" value = "Create">
</form>
</body>
</html>