我需要帮助在页面加载上打开pirobox灯箱而不是点击它。
答案 0 :(得分:0)
Pirobox不会明确支持此功能,但您可以通过编程方式触发“假”点击onLoad。
例如:
<script type="text/javascript">
$(function() {
$('#myId').click();
});
</script>
<body>
<a href="big1.jpg" rel="single" class="pirobox" title="your title" id="myId">
<img src="small1.jpg" />
</a>
</body>
以下是原始方法的固定版本(虽然我不建议使用这样的内联Javascript!):
<script type="text/javascript">
function open_popup() {
$('#myId').click();
}
</script>
<body onload="open_popup()">
<a href="big1.jpg" rel="single" class="pirobox" title="your title" id="myId">
<img src="small1.jpg" />
</a>
</body>