我正在为一个项目使用 Colorbox,它几乎似乎工作得很好。我只是无法让“Iframe”版本工作?我究竟做错了什么?我不能用 iframe 加载 .html 吗?我需要它是 iframe,因为它正在加载时事通讯形式。
$(document).ready(function(){
// Display a welcome message on first visit, and set a cookie that expires in 30 days:
if (document.cookie.indexOf('visited=false') === -1) {
var expires = new Date();
expires.setDate(expires.getDate()+30);
document.cookie = "visited=true; expires="+expires.toUTCString();
$.colorbox({iframe:true, href:"test.html"})
}
});