-4

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

document.getElementById("txtArea").innerHTML不给出更新的值。

<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>

提前致谢。

4

1 回答 1

2
document.getElementById("txtArea").value; //value of textarea
于 2013-07-15T15:48:15.957 回答