jquery从外部域页面加载div到.asp页面?

时间:2013-04-26 12:30:37

标签: jquery load

如何从.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>

谢谢!

0 个答案:

没有答案