0

プロジェクトでカラーボックスを使用して、jQuery ポップアップ ウィンドウに詳細を表示しました。しかし、目的のページが表示されません。
これはコードです:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="css/colorbox.css" type="text/css" />
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.colorbox.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {
    $(".iframe").colorbox({iframe:true, width:"70%", height:"70%"});
});
</script>
</head>

<body>
<a href="http://www.google.com" class="iframe" style="color:#333">Click here</a>
</body>
</html>

ここで見ることができます。
どうしたの ?

4

2 に答える 2

1

google.com を iframe に表示しようとしていますが、これは他の側面ほど簡単ではありません。他のほとんどの面で行ったのと同じように機能するはずです。

詳細については、こちらをお読みください: iframe で google.com を表示するには?

于 2013-08-07T06:14:18.960 に答える
0

あなたの目的はよくわかりませんが、iframe を使用してウェブサイトに Google 検索を埋め込みたい場合は、http://www.google.com/customを試すことができます。ここでデモを見ることができますhttp://jsfiddle.net/devchill/LVunZ/

<a href="http://www.google.com/custom" class="iframe" style="color:#333">Click here</a>

$(".iframe").colorbox({iframe:true, width:"70%", height:"70%"});
于 2013-08-07T07:37:27.117 に答える