我有一个非常简单的问题,我正在寻找一种简单的方法来做到这一点。实际上,我正在寻找从机构的官方网页自动填写Web表单的方法,我想用Javascript将其填写到一个网页中,该网页将在客户端自动执行。
var x = new XMLHttpRequest;
x.open('GET', 'form1.php', true);
x.onreadystatechange = function() {
if(this.readyState === 4) {
if(this.status === 200) {
var doc = this.response;
//alert(doc);
//var f = doc.getElementById(fname);
document.write(doc);
document.getElementById("fname").value="saeed";
document.getElementById("lname").value="ghanbari";
document.getElementById("email").value="saeed@gmail.com";
//document.getElementById("mysubmit").click();
}else if(this.status === 0) {
alert("NOT_ALLOWED: Can't cross this site URL.");
}else{
// Request error ; >= 500 || 404 || ...
}
}
}
x.send();