如何通过js或者jquery载入其他网站的网页(DOM)?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过js或者jquery载入其他网站的网页(DOM)?相关的知识,希望对你有一定的参考价值。
有没有什么的好的办法把其他网站的网页载入并插入到我的网页中。
给你个实例,就是通过发送访问请求,而获得请求返回的数据。<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>远程网页源代码读取</title>
<style type="text/css">
/* 页面字体样式 */
body, td, input, textarea
font-family:Arial;
font-size:12px;
</style>
<script type="text/javascript">
//用于创建XMLHttpRequest对象
function createXmlHttp()
//根据window.XMLHttpRequest对象是否存在使用不同的创建方式
if (window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest(); //FireFox、Opera等浏览器支持的创建方式
else
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");//IE浏览器支持的创建方式
//直接通过XMLHttpRequest对象获取远程网页源代码
function getSource()
var url = document.getElementById("url").value; //获取目标地址信息
//地址为空时提示用户输入
if (url == "")
alert("请输入网页地址。");
return;
document.getElementById("source").value = "正在加载……"; //提示正在加载
createXmlHttp(); //创建XMLHttpRequest对象
xmlHttp.onreadystatechange = writeSource; //设置回调函数
xmlHttp.open("GET", url, true);
xmlHttp.send(null);
//将远程网页源代码写入页面文字区域
function writeSource()
if (xmlHttp.readyState == 4)
document.getElementById("source").value = xmlHttp.responseText;
</script>
</head>
<body>
<h1>远程网页源代码读取</h1>
<div>
地址:<input type="text" id="url">
<input type="button" onclick="getSource()" value="获取源码">
</div>
<textarea rows="10" cols="80" id="source"></textarea>
</body>
</html> 参考技术A 用下iframe试试或者
$.ajax(
type: "POST",
contentType: "application/json",
url: 'url:'http://www.xxx.com/index.php',
dataType: 'jsonp',
data:'"app":"store","act":"bbsShow" //等等
success:funtion(data)
); 参考技术B 用jsoup,轻量级开元,挺好用的、 参考技术C iframe框架。
以上是关于如何通过js或者jquery载入其他网站的网页(DOM)?的主要内容,如果未能解决你的问题,请参考以下文章