textContent

書式

element.textContent

対応

[Firefox 1〜][Opera 9〜]

説明

内容を参照/設定します。これはIEなどのinnerTextプロパティと同じです。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<script type="text/javascript"><!--
function check() {
var obj = document.getElementById("pBox");
var tName = obj.firstChild.textContent;
alert(tName);
obj.firstChild.textContent = "text3";
}
// --></script>
</head>
<body bgcolor="#fffff0">
<h1>textContent</h1>
<form>
<input type="button" id="myButton" value="Click" onClick="check()">
</form>
<div id="pBox"><span class="abc">text1</span><div id="subBox">text2</div></div>
</body>
</html>