链接附上了我最爱的moon,虽然说wcg还有2个月,但我听到这个世界对我的呼唤,可能真的有一天,我能在舞台下面,为他的胜利欢呼,然后鼓励我前行。
<!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>
</head>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<body>
<iframe width="50" height="50" src=""></iframe>
<div>
</div>
</body>
</html>
<script>
$.ajaxPrefilter(function (options) {
if (options.crossDomain && jQuery.support.cors) {
var http = (window.location.protocol === 'http:' ? 'http:' : 'https:');
options.url = 'https:' + '//cors-anywhere.herokuapp.com/' + options.url;
}
});
var link = "https://mp.weixin.qq.com/s/QPEoj2-05TQBvNjdXsJcCw";
$.get(
link,
function (response) {
var html = response;
html = html.replace(/data-src/g, "src");
//iframe的嵌套
// var html_src = 'data:text/html;charset=utf-8,' + html; //解析码解决乱码
// $("iframe").attr("src", html_src);
$("div").html(html)
}
);
</script>