Ιδιότητα id του HTML DOM

Ορισμός και Χρήση

Η ιδιότητα id μπορεί να ρυθμιστεί ή να επιστραφεί το id του iframe.

Γλώσσα

iframeObject.id=id

Παράδειγμα

Αυτό το παράδειγμα δείχνει δύο τρόπους για να επιστρέψετε το id του iframe:

<html>
<body>
<iframe src="frame_a.htm" id="frame1"></iframe>
<br /><br />
<script type="text/javascript">
document.write("Το id του iframe: ");
document.write(document.getElementsByTagName("iframe")[0].id);
document.write("<br /><br />");
document.write("Μια εναλλακτική μέθοδος: ");
document.write("<br />");
document.write("Το id του iframe: ");
document.write(document.getElementById("frame1").id);
</script>
</body>
</html>