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

您正在尝试在 iframe 中显示 google.com,这不像其他方面那么容易。它应该像您在几乎任何其他方面所做的那样工作。

阅读此内容以获取更多信息:如何在 iframe 中显示 google.com?

于 2013-08-07T06:14:18.960 回答
0

我不确定您的目的,但如果您想使用 iframe 在您的网站上嵌入谷歌搜索,您可以尝试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 回答