<html>
<head>
<title></title>
<script type="text/javascript"><!--
function test2() {
var val2 = document.getElementById("ex2").childNodes[1].childNodes[0].nodeValue;
alert(val2);
}
--></script>
</head>
<body>
<div id="ex2">Web courses - <span>http://coursesweb.net</span> - lessons, tutorials</div>
<a href="#" onclick="test2()" title="childNodes example">Test 2</a>
</body>
</html>
上記のアラートhttp://coursesweb.net。
しかし、追加<p>Some text</p>
して追加しようとすると、機能childNodes[2]
しません。
ChildNode
このコードとコンセプトについても説明してください。