我是新手,我甚至不确定这是可能的。我只需要自动发送带有一些值(HTML输入)的表单作为AJAX请求,但我不知道在哪里发送它(如URL或其他东西)。我已经问了一次,有人告诉我,我可能想要破解一些东西,不!只想提交一个包含键盘和鼠标等值的表单。我想使用jQuery和Tampermonkey。 感谢。
答案 0 :(得分:0)
这是ajax ......
问题在于我并不真正理解你真正想要的是什么,但当你用这个加载你的页面时,它会触发一个POST类型的表单提交(但是你必须在你的数据数组中指定它) )
$(document).ready(function(){
$.ajax({
type: "POST",
url: "/your/url.php",
data: yourDataArray, //Create an array variable with your input values
dataType: "json" //For example, if you want to return json from PHP
success: function(data){
console.log("Send");
}
});
});