我需要从外部网页获取具有div ID的元素。
这是我尝试使用的代码,但未返回任何内容。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TEST</title>
<style>
body {
font-size: 12px;
font-family: Arial;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<b>Output:</b>
<ol id="tablepress-34_wrapper"></ol>
<script>
$( "#tablepress-34_wrapper" ).load( "https://mrafiee.net/daily-bonus-digital-communication/" );
</script>
</body>
</html>
例如,我想让该表在另一个外部页面中显示。我该怎么做 ? 谢谢
答案 0 :(得分:-1)
您面临的问题归因于CORS policy。一种解决方法是使用诸如https://cors-anywhere.herokuapp.com/之类的代理服务;例如,以下代码将远程站点的第一个div
注入到body
$('body').load('https://cors-anywhere.herokuapp.com/https://mrafiee.net/daily-bonus-digital-communication/ div')