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.
私のiframeは、次のコードでボタンで閉じられています。
parent.jQuery.colorbox.close()
お気に入り
<button type="submit" onclick="parent.jQuery.colorbox.close()" ....
どういうわけかこのイベントの時間を計ることができますか?したがって、2秒後に閉じます。元?
ColorBoxライブラリを使用しています。
<button type="submit" onclick="setTimeout(parent.jQuery.colorbox.close,2000)" ...
setTimeoutは、指定されたミリ秒数(この場合は2000)だけ実行を遅らせます。