我一直在寻找解决这个问题的方法,但似乎找不到它...... 我有以下index.html与此框架集:
<html>
<head>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui-1.10.3.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.colorbox.js"></script>
<link href="js/colorbox.css" rel="stylesheet" type="text/css" media="screen" />
<script>
function MyCallForColorboxFunction(html){
alert('done');
$.colorbox({title:'Aniversariantes',inline:true, href:"#colorbox_content", width:"600px", height:"500px"});
}
</script>
</head>
<FRAMESET ROWS="100,70,*" FRAMEBORDER="1" FRAMESPACING="2">
<FRAME SRC="cre.html" NAME="superior" MARGINWIDTH="0" FRAMEBORDER="0" MARGINHEIGHT="0" NORESIZE SCROLLING="NO">
<FRAME SRC="menu.html" NAME="menu" MARGINWIDTH="0" FRAMEBORDER="0" MARGINHEIGHT="0" NORESIZE SCROLLING="NO">
<FRAME SRC="principal.html" NAME="corpo" MARGINWIDTH="0" FRAMEBORDER="0" MARGINHEIGHT="0" NORESIZE SCROLLING="YES">
</FRAMESET>
<noframes>
<body>
<div style="display:none">
<div id="colorbox_content" style="padding:10px; background:#fff;">
content here
</div>
</div>
</body>
</noframes>
</frameset>
</html>
我想要做的是从“corpo”框架打开一个colobox来填充所有3个框架,但它只填充“corpo”,我做了一些测试,似乎我可以执行函数来自“corpo”的index.html使用示例top.MyCallForColorboxFunction()但是没有任何事情发生甚至没有错误,就好像没有显示颜色框一样。
有人可以帮忙吗? 此致, 迪奥戈