php跨域提交form表單2種方法

來源:互聯網
上載者:User

遠程出於安全因素考慮,直接跨域訪問是不允許的,下面介紹二種跨域的方法。

一,通過php curl

function curlPost($url,$params) 

 $postData = ''; 
 foreach($params as $k => $v) 
 { 
 $postData .= $k . '='.$v.'&'; 
 } 
 rtrim($postData, '&'); 
 $ch = curl_init(); 
 curl_setopt($ch,CURLOPT_URL,$url); 
 curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); 
 
 curl_setopt($ch,CURLOPT_HEADER, false); 
 curl_setopt($ch, CURLOPT_POST, count($postData)); 
 curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);  
 
 $output=curl_exec($ch); 
 
 curl_close($ch); 
 return $output; 

 
echo curlPost("http://111cn.net",array('name'=>"tank")); 


以前很多人用curl來抓,郵箱的通訊錄,不過現在已經不可以了。哈哈。

二,利用jquery form,ajax提交

1,下載jquery.form.js

2,js代碼


$('#testform').submit(function() { 
 $(this).ajaxSubmit({ 
 type: 'post', // 提交方式 get/post 
 dataType:"json",//資料類型 
 url: 'your url', // 需要提交的 url 
 success: function(data) { // data 儲存提交後返回的資料,一般為 json 資料 
 // 此處可對 data 作相關處理 
 alert('提交成功!'); 
 } 
 $(this).resetForm(); // 提交後重設表單 
 }); 
 return false; // 阻止表單自動認可事件 
}); 

3,php代碼
 
header("Access-Control-Allow-Origin:*"); //跨域使用權限設定,允許所有 
 
header("Access-Control-Allow-Origin:http://www.111cn.net"); //只允許111cn.net跨域提交資料 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.