我想執行$(「繩」)。自動點擊()函數頁面完全加載後。觸發onClick();在頁面加載
<script type="text/javascript">
$(document).ready(function() {
$curtainopen = false;
$(".rope").click(function(){
$(this).blur();
if ($curtainopen == false){
$(this).stop().animate({top: '0px' }, {queue:false, duration:350, easing:'easeOutBounce'});
$(".leftcurtain").stop().animate({width:'60px'}, 4500);
$(".rightcurtain").stop().animate({width:'60px'},4500);
$curtainopen = true;
}else{
$(this).stop().animate({top: '-40px' }, {queue:false, duration:350, easing:'easeOutBounce'});
$(".leftcurtain").stop().animate({width:'50%'}, 4500);
$(".rightcurtain").stop().animate({width:'51%'},4500);
$curtainopen = false;
}
return false;
});
});
</script>
請幫忙。
相反評論每個答案的,我在這裏告訴你:'.trigger(「點擊」)'快'是。點擊()'。 –