欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

jsonp+php 实现跨域加载

程序员文章站 2022-04-30 14:45:05
...
php 端: demo.php
<?php
    $result =array('content'=>$_GET['content']);
    function jsonp($result){
        return $_GET['callback'] . '(' . urldecode(json_encode($result)) . ')';
    }
    echo jsonp($result);
?>

客户端:demo.js

<script>
       $.ajax({
                           url      : 'http://127.0.0.1/demo.php',
                           data     :{'content':'this is a test'},
                           dataType : 'jsonp',
                           jsonp    : 'callback',
                           success  : function(res) {
                                      console.log(res);       
                           }
       });
</script>