简体   繁体   中英

Typing in textarea not actually changing HTML tag content

Whenever I try to type in this textbox, the text I type is not appearing inside the tags of this textarea: 在此处输入图片说明

As you can see, "asd" does not appear inside <textarea></textarea> Why is this?

This is the CSS for the textarea:

.active-note-body {
    font-family: 'Lora', serif;
    color: #333333;
    resize: none;
    width: 100%;
    margin-top: 20px;
    font-size: 2.8vh;
    height: 80vh;
    padding-left: 10px;
    border: none;
    overflow-y: auto;
}

edit: I am stupid

您还应该从属性选项卡中检查textarea的值属性,也可以查看输入的值。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM