获取文本区域的更新值 - javascript

时间:2013-07-15 15:47:08

标签: javascript html5

如何在javascript中更新文本区域后获取值?

document.getElementById("txtArea").innerHTML doest提供更新后的值。

<p>
    <textarea style="width:270px;height:100px" id='txtData' rows='3' cols='80'></textarea>
</p>
<p>
    <button type=button style="width:270px;height:40px" onclick="getValue();" id='btnGet'>Get</button>
</p>


<script type="text/javascript">
function getValue () {
        alert(document.getElementById("txtData").innerHTML);
    }
</script>

提前致谢。

1 个答案:

答案 0 :(得分:2)

document.getElementById("txtArea").value; //value of textarea