简体   繁体   中英

How to change input tag to textarea tag

I am using spring to connect .html file and controller. Now, I have . But I want to change it to be a text area tag. I'm using .html file and not a .jsp file.

The code for input text is :

<input type="text" name="field1" id="field1" />

You can convert it to textarea as below :

<textarea name="field1" id="field1"> 

</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