首頁 > web前端 > js教程 > 主體

講解JavaScript中for...in語句的使用方法_基礎知識

WBOY
發布: 2016-05-16 15:56:44
原創
1424 人瀏覽過

 這裡是JavaScript支援的另一個循環。它被稱為for...in循環。這個循環是用來循環一個物件的屬性。

因為我們還沒有討論的對象,所以使用這個循環可能會感覺不太明白。但是,一旦你會對JavaScript物件了解後,那麼會發現這個循環非常有用。
文法

for (variablename in object){
 statement or block to execute
}

登入後複製

從物件每次迭代一個屬性分配給變數名稱(variablename),這個迴圈持續到該物件的所有屬性都用盡。
範例:

以下是列印出網頁瀏覽器的導航器-Navigator 物件的屬性,如下面的範例:

<script type="text/javascript">
<!--
var aProperty;
document.write("Navigator Object Properties<br /> ");
for (aProperty in navigator)
{
 document.write(aProperty);
 document.write("<br />");
}
document.write("Exiting from the loop!");
//-->
</script>

登入後複製

這將產生以下結果:

Navigator Object Properties
appCodeName
appName
appMinorVersion
cpuClass
platform
plugins
opsProfile
userProfile
systemLanguage
userLanguage
appVersion
userAgent
onLine
cookieEnabled
mimeTypes
Exiting from the loop! 

登入後複製

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板