首页 > 代码库 > 跨域抓取360搜索结果
跨域抓取360搜索结果
先来看效果,在搜索框中输入想要搜索的内容,信息就会显示在下方。
如何把360搜索到的信息放入自己的网页,涉及到了跨域请求。
代码分析:
1.创建script元素.document.createElelment("script");
2.设置script的src,这个src即为360搜索的接口。script.src="https://sug.so.360.cn/suggest?callback=infoget&encodein=utf8&encodeout=utf8&format=json&fields=word&word="
其中callback为请求成功的回调函数,需要提前定义好。word=后跟着就想要请求的内容。
3.把这个script元素加入到document中。当把script加入到document时,就会去请求360的数据了。
4.返回的数据格式。
主要是用到result,其他的在本次测试中没有用到。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script src=http://www.mamicode.com/"jquery-1.9.1.min.js"></script> <script> function infoget(data) { console.log(data.result[0].word); } $(function () { $("#btn").click(function () { var script = document.createElement("script"); script.src = "https://sug.so.360.cn/suggest?callback=infoget&encodein=utf-8&encodeout=utf-8&format=json&fields=word&word=" + $("#txt").val(); document.body.appendChild(script); }); }); </script> </head> <body> <input type="text" id="txt" style="width:500px"> <input type="button" value=http://www.mamicode.com/"确定" id="btn"> <div style="width:500px"></div> </body> </html>
跨域抓取360搜索结果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。