// ==UserScript==
// @name 管理
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @grant GM_xmlhttpRequest
// @require https://code.jquery.com/jquery-3.1.1.min.js
// @match https://mms.pinduoduo.com/supplier
// @connect mms.pinduoduo.com
// ==/UserScript==
(function () {
'use strict';
// GM_xmlhttpRequest({
// url:"http://localhost/dom.php",
// method :"POST",
// data:"user=这是我的要求代码",
// headers: {
// "Content-type": "application/x-www-form-urlencoded"
// },
// onload:function(xhr){
// console.log(xhr.responseText);
// }
// });
$(document).ready(function(){
$.ajax({
type: "POST",
url: "http://localhost/dom.php",
data: {
"user":"这是我的要求代码"
},
dataType: "text",
success: function(e) {
alert(e);
},
error: function() {
alert("NO");
}
});
});
})();
错误提示