jquery 와 phop 에 관 한 jsonp 예 (배경 PHP 와 성공 적 으로 통신)

2378 단어 jquery
<script> $(document).ready(function(){ $.ajax({ url:'http://localhost/test/jsonp.php', dataType:"jsonp", //  ,  jsonp         jsonp:"jsonpcallback", //     , php    timeout: 5000, success:function(data, status){ alert('success: ' + status); var $ul = $("<ul></ul>"); $.each(data,function(i,v){ $("<li/>").text(v["id"] + " " + v["name"]).appendTo($ul) }); $("#res").append($ul); }, error:function(XHR, textStatus, errorThrown){ alert('error: ' + textStatus); alert('error: ' + errorThrown); } }); }); </script>
$jsonp = $_GET['jsonpcallback']; $arr = array( 'id' => '1',

    'name' => 'test' ); echo $jsonp, '([', json_encode($arr), '])'; //                 ?>

좋은 웹페이지 즐겨찾기