function qingqiu() {
var url1 = "http://api.iotfuns.net/login?phone_number=" + document.getElementById('username').value + "&password=" + document.getElementById('password').value
$.ajax({
type: "post",
url: url1,
success: alert("success")
});
var req = new XMLHttpRequest();
req.open('post',url1, false);
req.send(null);
var headers = req.getAllResponseHeaders();
alert(headers);
}
跨域了沒有?沒跨域你代碼沒問題
如果跨域了需要在你的服務器端做代理頁面,由代理頁面來post,而不是客戶端ajax直接post請求跨域的頁面
如果你這個頁面支持get,跨域不想在自己網站做代理,可以使用yql轉為jsonp數據