单击国家/地区时,我正在使用fancybox弹出窗口构建带有拉斐尔脚本的欧洲地图,它显示iframe
.
当单击在iframe
新页面iframe
中打开的链接时,但我想在新窗口中打开该链接。
这是我的 raphael 脚本:
greek[state].click(function(){
$j.fancybox({
'showCloseButton': true,
'href' : 'link.html',
'width' : 500,
'height' : 350,
'type' : 'iframe'
});
});
link.html 文件是:
<a onclick="window.open(this.href,'','resizable=yes,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,fullscreen=no,dependent=no,width=400,height=500,left=350,top=250,status'); return false" href="http://www.test.com"><img src="test-simotas.jpg" width="447" height="314"/></a>
我找不到解决方案。
你有什么主意吗??提前致谢。