これはよくある問題かもしれません。この問題についていくつかの回答を見ました。
- jquery ロードの使用
- iframe の使用
両方試してみましたが、簡単にロードできませんでした。これは google.com をロードするためのもので、機能していません。
<html>
<head>
<title>hhh</title>
<script src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#content").attr("src","http://www.google.lk/");
})
</script>
</head>
<body>
<iframe id="content" src="about:blank"></iframe>
</body>
</html>
しかし、w3schools.com を読み込もうとすると、iframe に読み込まれます
<html>
<head>
<title>hhh</title>
<script src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#content").attr("src","http://w3schools.com/");
})
</script>
</head>
<body>
<iframe id="content" src="about:blank"></iframe>
</body>
</html>
jQuery load を使用する場合も機能しません。
<html>
<head>
<script src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#content").load("src","http://www.google.com/");
})
</script>
</head>
<body>
<div id="content" src="about:blank"></div>
</body>
</html>
そして、firebug バーでは、これを " GET http://www.google.com 302 Found 291ms
"で示します。
誰かがこれを取り除くのを手伝ってくれます。