--- title: window.setCursor slug: Web/API/Window/setCursor tags: - DOM - Gecko - Gecko DOM Reference - Window translation_of: Web/API/Window/setCursor ---
対象ウィンドウのカーソルを変更します。
function setBusyCursor(enable) { window.setCursor(enable ? "wait" : "auto"); }
カーソルは auto
に設定されるまでリセットされません。
これは ChromeWindow interface の一部です。 Web ページに於いては使用できません。 Web ページのカーソルを変更するには CSS の {{cssxref("cursor")}} プロパティを用います。
{{dom0}}