Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私の質問です。このトリガーの後に特定の機能のクリックをトリガーしています。条件内で次のクリックをクリックする前に5秒の遅延が必要です。ここに私のコードがあります
$('.history .enter').trigger('click'); if( peCount != 7) { $('.btn_physical').trigger('click'); $('.black_bg').fadeIn(300); }
誰か助けてください。
queueとを使用できますがdelay、遅延はリセットできないことに注意してください。
queue
delay
$('.btn_physical').clearQueue().delay(5000).queue(function(){$(this).trigger('click');});