0
我在我的網站上看到了一些javascript。jQuery Colorbox打開新頁面
<script>
if($(window).width() <= 1024){
function openColorBox(){
$.colorbox({iframe:true, width:"80%", height:"80%", href: "assets/mobile/lightbox.html"});
}
setTimeout(openColorBox, 1000);
}
</script>
lightbox.html看起來像這樣。
<p class="headline">Welcome to</p>
<p class="image-p"><img align="middle" class="image" src="../css/images/cmapslogo.png"></p>
<p class="text">Would you like to continue to the mobile site?</p>
<p class="button-p"><a href="index.html"><button class="button button1">Go to mobile site</button></a></p>
但是,當某人按下鏈接轉到index.html時,它會將其加載到jQuery colorbox中。該鏈接是否可以在實際頁面中加載而不是彩色框?彩盒就是從這裏開始: http://www.jacklmoore.com/colorbox/
它的工作。非常感謝 –