今天开发项目的时候用到了<textarea></textarea>标签,在给它赋默认值时发现它并不能使用value属性进行默认值,最后在网上查找到了解决办法。
方法一:
<textarea>需要设置的默认值</textarea>
方法二:
通过js来设置value属性
<textarea id="topic" rows="10" name="topic" ></textarea>
<script>
document.getElementById("topic").value="helloword"
</script>