我有页面A(page A)和页面B(page B),它将由第A页打开。
我想要完成的是让页面B启动一个颜色框库,当颜色框库关闭时,页面B颜色框会重新启动。
问题1 :如果您点击B页上的缩略图(彩盒),则会显示彩色相框照片,但相册无效。
问题2 :如果您关闭图库,则页面B不会返回。相反,你将被带回A页。
页面A具有以下代码,可在关闭彩盒库时重新打开页面B:
/* _photourl is the picture url, */
/* _photorel is the group name, */
/* _parenturl is the url of page B */
function showColorboxGallery(_photourl, _photorel, _parenturl) {
$.colorbox(
{
scrolling: false,
href: _photourl,
rel: _photorel,
onClosed: function () {
parent.$.colorbox({
href: _parenturl,
iframe: true,
width: 960,
height: 418
});
return;
}
}
);
return;
}
页面B在点击任何缩略图时使用以下内容打开图库:
onclick="parent.showColorboxGallery('http://www.abc.com/photo.jpg',
'photosanimal',
'Full_URL_of_HTML_Page_B')"
我错过了什么或做错了什么?有什么建议吗?