我正在尝试创建一个脚本,在加载网页后立即发送POST请求。
POST数据参数将包含它将通过“document.getElementsByName”收集的某些值
这就是我在做什么,但它不起作用---
var id1 = document.getElementsByName("ID1")[0].value
var id2 = document.getElementsByName("ID2")[0].value
GM_xmlhttpRequest({method: "POST",
url: "https://www.example.com/",
data: 'paramter1=' + id1 '¶mter2=' + id2 ,
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
onload: function(response) {
console.log ("gut response");
$("#input").get()[0].value=response.responseText;
}
});
如果@Brock Adams可以回答
,我将不胜感激