如何在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>
提前致谢。
答案 0 :(得分:2)
document.getElementById("txtArea").value; //value of textarea