我想通过AJAX将POST参数发送到控制器,但是没有 jQuery。我该怎么办?
function myFunction() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("myDiv").innerHTML = this.responseText;
}
};
//Add the POST parameters
xhr.open("POST", "my_controller.php", true);
xhr.send();
}

<button type="button" onclick="myFunction">Send POST parameters</button>
<div id="myDiv"></div>
&#13;
感谢您的帮助。