我在我的項目中使用了colorbox來顯示jQuery彈出窗口中的一些細節。但目標頁面不出現。
這是代碼:爲什麼Colobox iframe不能打開頁面?
<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>
您可以在Here看到。
有什麼問題?