dom1_ie.html 778 Bytes
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>DOMサンプル</title>
</head>

<body>
    <h1>タイトル</h1>
    <ul>
        <li>リスト1</li>
        <li>リスト2</li>
        <li>リスト3</li>
    </ul>
    <a href="http://www.shuwasystem.co.jp/">リンク</a>

<script language="javascript" type="text/javascript">
var body_nodes = document.getElementsByTagName('body');
var li_text_node = body_nodes[0].childNodes[1].childNodes[2].childNodes[0];
var text = li_text_node.nodeValue;
alert(text);
</script>

</body>
</html>