我有一个 colorbox.js 文件和这样的 javascript 代码:
echo '<script src="js/jquery.colorbox.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$("#iframe").colorbox({iframe:true, width: "830", height: "620"});
});
</script>';
echo '<a href="prices.php" id="iframe">see the pricelist</a>';
当我单击一个链接时,它会通过颜色框作为 iframe 弹出窗口打开。但是,如果我在页面完全加载之前单击它,它将作为新页面上的普通链接打开(不会作为 iframe 弹出)。那么我怎样才能让 colorbox 脚本在所有其他 javascripts 和文件之前先加载。所以也许我可以阻止它作为普通页面打开。谢谢你。