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.
ログインが成功すると、関数を呼び出してfancyboxを閉じsetTimeout("window.parent.$.fancybox.close()",4000)enter code here ます...この関数はIE 9では正常に機能しますが、IE8で成功すると自動的に閉じません。
setTimeout("window.parent.$.fancybox.close()",4000)enter code here
これらのいずれかが私のために働く
setTimeout( function() { window.parent.$.fancybox.close(); },4000); setTimeout( window.parent.$.fancybox.close, 4000); setTimeout( "window.parent.$.fancybox.close()", 4000);