首页 > 代码库 > js传递数据一些方式
js传递数据一些方式
1.用Image对象的src属性
var img = new Image();
img.src = "http://www.xxx.con/?data1=1";
创建Image对象,通过其src属性可以向xxx地址传递数据,后台php可以通过GET方法获取src属性中“?”以后的数据。
2.script标签的src属性
var sc = document.createElement("script");
scr.type = "text/javascript";
sc.async = false; //是否异步
sc.src = "http://www.mamicode.com/test.php?name=liuwei,crossword=3";
document.documentElement.appendChild(sc);
3.通过ajax发送数据
//ajax函数封装
function fnAjax(url,cfn) {
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
};
xmlhttp.onreadystatechange = cfn;
xmlhttp.open("GET",url,true);
xmlhttp.send();
};
//ajax请求
function myAjax() {
fnAjax("http://www.baidu.com/",function() {
if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
//请求返回后执行的操作;
};
})
};
js传递数据一些方式