再会。
我有代码:
<a class="fancybox iframe" href="http://google.com" id="online_form_a">test</a>
<script>
$(document).ready(function() {
// add the fancy box click handler here
setTimeout(function() {
$("#online_form_a").trigger('click');
},10);
});
</script>
此代码应在 10 秒后单击元素<a>
,但脚本不起作用。
请告诉我哪里出错了?
PS:看工作脚本可以看JsFiddle