For...in
优质
小牛编辑
124浏览
2023-12-01
for...in循环用于循环对象的属性。 由于我们尚未讨论对象,您可能对此循环感到不舒服。 但是一旦你理解了对象在JavaScript中的行为方式,你会发现这个循环非常有用。
语法 (Syntax)
for (variablename in object){
statement or block to execute
}
在每次迭代中, object一个属性被赋值给variablename并且此循环继续,直到对象的所有属性都用完为止。
例子 (Example)
尝试以下示例来实现'for-in'循环。 它打印Web浏览器的Navigator对象。
<html>
<body>
<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>
<p>Set the variable to different object and then try...</p>
</body>
</html>
输出 (Output)
Navigator Object Properties
serviceWorker
webkitPersistentStorage
webkitTemporaryStorage
geolocation
doNotTrack
onLine
languages
language
userAgent
product
platform
appVersion
appName
appCodeName
hardwareConcurrency
maxTouchPoints
vendorSub
vendor
productSub
cookieEnabled
mimeTypes
plugins
javaEnabled
getStorageUpdates
getGamepads
webkitGetUserMedia
vibrate
getBattery
sendBeacon
registerProtocolHandler
unregisterProtocolHandler
Exiting from the loop!
Set the variable to different object and then try...