我正在尝试将表单数据,数组发布到php文件而不刷新页面。我正在使用似乎没有工作的ajax。下面是表单语法和ajax。有人能帮帮我吗?感谢。
<form name="postcontent" id="postcontent">
function[]; //just for an example of data
<button type="button" id="submitform" onclick="posttophp" >Send</button>
<script>
function posttophp() {
var xhttp = new XMLHttpRequest();
xhttp1.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("submitform").innerHTML = this.responseText;
}
};
xhttp.open("POST", "options.php", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send("
function_Options1[]=function[]")
}
</script>
在php中,我将function_Options1 []存储在另一个变量中并进一步使用。
答案 0 :(得分:0)
尝试两个想法:
onclick="posttophp();"