让我解释。我使用 Colorbox 加载 HTML 文件并将其显示在 iframe 中。HTML 文件包含<title>
标签。是否可以使用该<title>
标签作为 Colorbox 弹出窗口的标题?我可以使用onComplete
事件,但如何?
编辑:我应该澄清代码:
父 HTML:
<!doctype html>
<html>
<head>
<title>This is parent</title>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('a.cb').colorbox({
iframe : true,
title : function() { /* here goes the code */ },
});
});
</script>
</head>
<body>
<a class="cb" href="popup.html">Popup</a>
</body>
</html>
子 HTML:
<!doctype html>
<html>
<head>
<title>The title</title>
</head>
<body>
...
</body>
</html>
基本上我希望 Colorbox 显示子 HTML 代码的标题。