-1

Good day.

On my site i have a link:

<a class="fancybox iframe" href="./online_order/form.php" id="online_form_a">

This link opens another page in an Iframe

</a>

when click link on page load iframe.

Tell me please how make auto click when page load for iframe load auto when load page ?

4

2 回答 2

2

你可以只使用:

<script>
    window.location.replace("link.php");
</script>

我真的不建议这样做,因为html已经有一种重定向用户的方法:

<meta http-equiv="refresh" content="0;URL=YOUR-LINK-HERE" /> 

更新:使用它来触发点击页面加载:

<script>
$(document).ready(function() {
    // add the fancy box click handler here
    setTimeout(function() {
        $("#ExPRoG_online_form_a").trigger('click');
    },10);
});
</script>
于 2013-05-23T15:18:23.453 回答
0

如果是一些 AJAX 动作,你应该以其他方式触发它,如果它是重定向链接,你应该使用window.location.replace().

于 2013-05-23T15:18:03.517 回答