JavaScript Reference/Javascript Properties/self — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:21, 26 мая 2010

"self" Example

    
<html>
<body id="myBody" bottommargin=150>
<script language="JavaScript">
    function function1() {
        alert(window.self.myBody.bottomMargin);
    }
</script>
<input type="button" value="Bottom Margin" onclick="function1();">
</body>
</html>



"self" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |<frame>                         window                        |
+----------------+--------------------------------------------------------------+



"self" Syntax and Note

Note:
Read-only property. 
Returns a reference to the current active window or frame.
    
Syntax:
    
window.self
document.all.frameID.self // IE only