プロジェクトでカラーボックスを使用して、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>
ここで見ることができます。
どうしたの ?