JavaScript DHTML/Node Operation/ownerDocument — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:25, 26 мая 2010
"ownerDocument" Example
<html>
<body>
<div id="myD">
<p id="myP">This is a sample text.</p>
</div>
<br>
<input type="button" value="ownerDocument" onclick="function1();">
<script language="JavaScript">
function function1() {
alert(document.all.myP.ownerDocument);
}
</script>
</body>
</html>