我对将带有Javascript的变量发送到另一个页面有疑问。
这是我的代码,我正在尝试发送ID为naam的文本输入中的内容:
<input id="naam" style="width:100%; height:10px;" type="text" name="naam">
这里有这样的代码:
function opslaan() {
var naam = document.getElementById("naam").innerHTML;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("POST", "order_opslaan.php", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send("naam");
}
但是现在的问题是,如何在order_opslaan.php中获取发送变量?
因为我要在那里将其发送到数据库。