2008年12月21日

window

window | 特徵一頁 | 二頁 | 三頁 | 四頁 | 五頁
方法一頁 | 二頁 | 三頁 | 四頁 | 五頁 | 六頁 | 七頁
操控器一頁 | 二頁 | 三頁 | 四頁 | 五頁 | 六頁 | 七頁 | 成員表
window

此物件實體存放視窗的特徵與方法。例如視窗的長寬或顏色,視窗的開與關等等。分頁式的瀏覽器,每一個分頁都有一個 window 物件實體。

  • 程式用法:

    <script type='text/javascript'>
    document.write( window.constructor +'<br />');
    document.write( typeof window +'<br />');
    document.write( window.screen.height );
    </script>

  • 執行結果:

    function Window() { [native code] }
    object
    720

不同的瀏覽器,window 的成員有不同,使用時要注意。

  • 程式用法:

    <ol>
    <script type='text/javascript'>
    for(k in window) 
      if( typeof(window[k]) != 'function' )
         document.write( '<li>'+ k +' : '+ window[k] );
    </script>
    </ol>

  • 執行結果:

    1. window : [object Window]
    2. self : [object Window]
    3. document : [object HTMLDocument]
    4. name :
    5. location : http://ant4js.blogspot.com/2008/12/window.html
    6. customElements : [object CustomElementRegistry]
    7. history : [object History]
    8. navigation : [object Navigation]
    9. locationbar : [object BarProp]
    10. menubar : [object BarProp]
    11. personalbar : [object BarProp]
    12. scrollbars : [object BarProp]
    13. statusbar : [object BarProp]
    14. toolbar : [object BarProp]
    15. status :
    16. closed : false
    17. frames : [object Window]
    18. length : 0
    19. top : [object Window]
    20. opener : null
    21. parent : [object Window]
    22. frameElement : null
    23. navigator : [object Navigator]
    24. origin : http://ant4js.blogspot.com
    25. external : [object External]
    26. screen : [object Screen]
    27. innerWidth : 1280
    28. innerHeight : 720
    29. scrollX : 0
    30. pageXOffset : 0
    31. scrollY : 0
    32. pageYOffset : 0
    33. visualViewport : [object VisualViewport]
    34. screenX : 0
    35. screenY : 0
    36. outerWidth : 1280
    37. outerHeight : 720
    38. devicePixelRatio : 1
    39. event : undefined
    40. clientInformation : [object Navigator]
    41. screenLeft : 0
    42. screenTop : 0
    43. styleMedia : [object StyleMedia]
    44. onsearch : null
    45. isSecureContext : false
    46. trustedTypes : [object TrustedTypePolicyFactory]
    47. performance : [object Performance]
    48. onappinstalled : null
    49. onbeforeinstallprompt : null
    50. crypto : [object Crypto]
    51. indexedDB : [object IDBFactory]
    52. sessionStorage : [object Storage]
    53. localStorage : [object Storage]
    54. onbeforexrselect : null
    55. onabort : null
    56. onbeforeinput : null
    57. onbeforematch : null
    58. onbeforetoggle : null
    59. onblur : null
    60. oncancel : null
    61. oncanplay : null
    62. oncanplaythrough : null
    63. onchange : null
    64. onclick : null
    65. onclose : null
    66. oncontentvisibilityautostatechange : null
    67. oncontextlost : null
    68. oncontextmenu : null
    69. oncontextrestored : null
    70. oncuechange : null
    71. ondblclick : null
    72. ondrag : null
    73. ondragend : null
    74. ondragenter : null
    75. ondragleave : null
    76. ondragover : null
    77. ondragstart : null
    78. ondrop : null
    79. ondurationchange : null
    80. onemptied : null
    81. onended : null
    82. onerror : null
    83. onfocus : null
    84. onformdata : null
    85. oninput : null
    86. oninvalid : null
    87. onkeydown : null
    88. onkeypress : null
    89. onkeyup : null
    90. onload : null
    91. onloadeddata : null
    92. onloadedmetadata : null
    93. onloadstart : null
    94. onmousedown : null
    95. onmouseenter : null
    96. onmouseleave : null
    97. onmousemove : null
    98. onmouseout : null
    99. onmouseover : null
    100. onmouseup : null
    101. onmousewheel : null
    102. onpause : null
    103. onplay : null
    104. onplaying : null
    105. onprogress : null
    106. onratechange : null
    107. onreset : null
    108. onresize : null
    109. onscroll : null
    110. onsecuritypolicyviolation : null
    111. onseeked : null
    112. onseeking : null
    113. onselect : null
    114. onslotchange : null
    115. onstalled : null
    116. onsubmit : null
    117. onsuspend : null
    118. ontimeupdate : null
    119. ontoggle : null
    120. onvolumechange : null
    121. onwaiting : null
    122. onwebkitanimationend : null
    123. onwebkitanimationiteration : null
    124. onwebkitanimationstart : null
    125. onwebkittransitionend : null
    126. onwheel : null
    127. onauxclick : null
    128. ongotpointercapture : null
    129. onlostpointercapture : null
    130. onpointerdown : null
    131. onpointermove : null
    132. onpointerrawupdate : null
    133. onpointerup : null
    134. onpointercancel : null
    135. onpointerover : null
    136. onpointerout : null
    137. onpointerenter : null
    138. onpointerleave : null
    139. onselectstart : null
    140. onselectionchange : null
    141. onanimationend : null
    142. onanimationiteration : null
    143. onanimationstart : null
    144. ontransitionrun : null
    145. ontransitionstart : null
    146. ontransitionend : null
    147. ontransitioncancel : null
    148. onafterprint : null
    149. onbeforeprint : null
    150. onbeforeunload : null
    151. onhashchange : null
    152. onlanguagechange : null
    153. onmessage : null
    154. onmessageerror : null
    155. onoffline : null
    156. ononline : null
    157. onpagehide : null
    158. onpageshow : null
    159. onpopstate : null
    160. onrejectionhandled : null
    161. onstorage : null
    162. onunhandledrejection : null
    163. onunload : null
    164. crossOriginIsolated : false
    165. scheduler : [object Scheduler]
    166. launchQueue : [object LaunchQueue]
    167. originAgentCluster : false
    168. onpageswap : null
    169. onpagereveal : null
    170. credentialless : false
    171. fence : null
    172. speechSynthesis : [object SpeechSynthesis]
    173. onscrollend : null
    174. onscrollsnapchange : null
    175. onscrollsnapchanging : null
    176. __pwInitScripts : [object Object]
    177. google_ad_client : pub-6650559203801165
    178. google_ad_host : pub-1556223355139109
    179. google_ad_host_channel : 00000
    180. google_ad_width : 728
    181. google_ad_height : 90
    182. google_ad_format : 728x90_as
    183. google_ad_type : text_image
    184. google_color_border : FFFFFF
    185. google_color_bg : 333377
    186. google_color_link : FF0000
    187. google_color_url : 33FFFF
    188. google_color_text : FFFFFF
    189. TEMPORARY : 0
    190. PERSISTENT : 1

©2008-2009 by ant2legs, All Rights Reserved. ant2legs 擁有其製作的文章,圖片與程式的著作權,所有權利保留。