JavaScript Reference/Javascript Collections/embeds

Материал из Web эксперт
Версия от 08:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"embeds" Example

    
<html>
<body>
<!-- Body content with some embed objects -->
<input type="button" 
       value="Retrieve the number of embeds in this document" 
       onclick="alert(document.embeds.length);">
</body>
</html>



"embeds" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |document                                                      |
+----------------+--------------------------------------------------------------+



"embeds" JavaScript properties and JavaScript methods

JavaScript properties and JavaScript methods
 
item(), length, namedItem(), tags(), urns()



"embeds" Syntax Parameters and Note

Note:
Returns an array of all <embed> elements in a document.
    
Syntax:
    
document.embeds // returns all embed elements
document.embeds(param1, param2) // returns an individual embed element
    
    
    param1   Required; zero-based index or 
                       the desired member"s id or name attribute.
                       
    param2   Optional; zero-based index for the result returned
                       if param1 matches more than one element.