本文主要是介绍js 模仿post传输数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
function sub($id){
var nnme = $('#a'+$id).attr('nnme');
var location = $('#a'+$id).attr('location');
var address = $('#a'+$id).attr('address');
//调用下面的方法,参数1 地址 ; 参数2 input的name input的value
post('index.php', {nnme:nnme,location:location,address:address})
}
function post(URL, PARAMS) {
var temp = document.createElement("form");
temp.action = URL;
temp.method = "post";
// temp.style.display = "none";
for (var x in PARAMS) {
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
// alert(opt.name)
temp.appendChild(opt);
}
document.body.appendChild(temp);
temp.submit();
return temp;
}
这篇关于js 模仿post传输数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!