The textarea tag uses the placeholder attribute, and the value is not displayed

One: The cause of the error

<textarea type="text" placeholder="请输入问题描述">

</textarea>
<textarea type="text" placeholder="请输入问题描述"> </textarea>

The main reason for not displaying is caused by newlines and spaces

Two: Correct spelling

<textarea type="text" placeholder="请输入问题描述"></textarea>

Guess you like

Origin blog.csdn.net/qq_45904018/article/details/127484892