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.
ページが読み込まれてから 3 秒後に現在のウィンドウをぼかしたいと思います。jQueryで現在のウィンドウをぼかすには?
ぼかしイベントを検出していません。
====更新===
私は試した:
$(window).blur(); $(document).blur();
失敗した
ブラウザの現在のウィンドウ/ページのフォーカスを外すことを意味します。
これをチェックして
var xSeconds = 2; // 2 seconds var myDialog = $('dialog_element').dialog('open'); setTimeout(function() { myDialog.dialog('close'); }, xSeconds * 1000);