1

如何在 .asp 页面的 div 中加载来自不同域的网页?我正在使用以下内容并且两者都有效,它将我域上的一个页面中的 div 加载到我域上的另一个页面中。但是,如果它是另一个域,我该怎么做?

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript" src="js/jquery.xdomainajax.js"></script>
<script type="text/javascript">
$(document).ready(function(){

    $('#external').load('http://www.mypage.com/page2.html #page2'); 


    $('#mydiv').load('http://www.mypage.com/page2.html #page3', function(response, status, xhr) {
    if (status == "error") {
        var msg = "Sorry but there was an error: ";
        alert(msg + xhr.status + " " + xhr.statusText);
      }
});    
});
</script>
</head>
<body>
<div id="external"></div>
<br><br>
<div id="mydiv"></div>
</body>
</html>

谢谢!

4

0 回答 0