我已经将colorbox jQuery灯箱用于我的灯箱。但在那个人应该点击按钮。我想在窗口加载时自动弹出窗口。
我的灯箱代码是
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="../jquery.colorbox.js"></script>
<script>
$(document).ready(function(){
$(".ajax").colorbox();
});
</script>
</head>
<body>
<h2>Other Content Types</h2>
<p><a class='ajax' href="../content/daisy.jpg" title="Homer Defined">Outside HTML (Ajax)</a></p>
</html>
现在我想在加载窗口时自动弹出窗口。
答案 0 :(得分:13)
使用最新版本的ColorBox,您使用$.colorbox({inline:true, href:".ajax"});
工作演示:http://jsfiddle.net/34v22/
我还清理了一下你的代码:
<!doctype html>
<head>
<title>My Automatic ColorBox</title>
<link rel="stylesheet" type="text/css" href="../link/to/jquery.colorbox.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="../jquery.colorbox.js"></script>
<script>$(document).ready(function(){$.colorbox({inline:true, href:".ajax"});});</script>
</head>
<body>
<h2>Other Content Types</h2>
<div class='ajax' style='display:none'><a href="../content/daisy.jpg" title="Homer Defined">Outside HTML (Ajax)</a></div>
</body>
答案 1 :(得分:1)
虽然有效,但我无法点击iframe页面。我已经在iframe中添加了一个表单。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js">
</script>
<script type="text/javascript" src="js/jquery.colorbox.js"></script>
<script>$(document).ready(function(){$.colorbox({inline:true, href:".ajax"});});
</script>
<script>
(function($){
$(document).ready(function() {
$.colorbox({innerWidth:600,innerHeight:500,html:'<iframe width=600 height=500
src=masson-form.html> </iframe>'});
});
})(jQuery);
</script>
答案 2 :(得分:0)
如果您愿意,可以直接在jQuery调用中添加html
(function($){
$(document).ready(function() {
$.colorbox({innerWidth:420,innerHeight:315,html:'<iframe width=420 height=315 src=http://www.youtube.com/embed/eh-0knDpn5g frameborder=0 allowfullscreen></iframe>'});
});
})(jQuery);