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

js跨域调http接口(jsonp) 博客分类: JS js跨域jsonp 

程序员文章站 2024-03-14 23:56:59
...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<input type="text" id="searchInput"/>
<script>
    var success_jsonpCallback = function (result) {
        console.log("--------------------", typeof result, result);
    };
    document.querySelector("#searchInput").oninput = function (e) {
        if (document.querySelector("#searchPersonJsonp")) {
            this.parentNode.removeChild(document.querySelector("#searchPersonJsonp"));
        }
        var JSONP = document.createElement("script");
        JSONP.id = "searchPersonJsonp";
        JSONP.type = "text/javascript";
        JSONP.src = "http://21.57.14.2/searchperson.ashx?value=" + this.value + "&jsoncallback=success_jsonpCallback";
        this.parentNode.appendChild(JSONP);
    };
</script>
</body>
</html>

 

相关标签: js 跨域 jsonp