php jqueryのクロスドメイン送信問題、不満はありません、たったの20点です
1: ドメインAサーバーの出力jsonは以下の通りです
<br /> $test = "{name:\"John\", message:\"hello John\"}";<br /> echo $test;<br />
<br /> function sendEmail() {<br /> var orderingId = $("#orderingId").val();<br /> alert(orderingId);<br /> $.ajax({<br /> type: "get",<br /> url:"http://www.testB.com/cronemail/cron_expressmail.php?orderingid=2222",<br /> cache : false, <br /> dataType : "jsonp",<br /> jsonp: "callbackfun",<br /> jsonpCallback:"jsonpCallback",<br /> success:function (json) {<br /> alert(json.message);<br /> }<br /> })<br /> }<br />