在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>
提前致谢。