博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springmvc常用标签库
阅读量:4229 次
发布时间:2019-05-26

本文共 622 字,大约阅读时间需要 2 分钟。

input标签相当于text

<form:input path="username"/></td>

password标签

<form:password path="password"/>

hidden标签

<form:hidden path="id"/>

textarea标签是一个支持多行输入的html元素

<form:textarea path="remark" rows="5" cols="20"/>

checkbox标签

<form:checkbox path="courses" value="javaee" label="javaee"/>

<form:checkbox path="courses" value="mybatis" label="mybatis"/>

checkboxes

<form:checkboxes items="${courseList}" path="course"/>

radiobutton标签

<form:radiobutton path="sex" value="男"/>男

radiobuttons标签

<form:radiobuttons path="sex" items="${sexList}"/>

select标签

<form:select path="deptId">

  <form:option value="1">财务部</form:option>

</form:select>

转载地址:http://avjqi.baihongyu.com/

你可能感兴趣的文章
The Vest Pocket Guide to Information Technology
查看>>
Beginning MySQL
查看>>
Uncertainty and Information: Foundations of Generalized Information Theory
查看>>
Professional Web APIs with PHP: eBay, Google, Paypal, Amazon, FedEx plus Web Feeds
查看>>
Cases on Information Technology Planning, Design And Implementation
查看>>
SQL For Dummies
查看>>
Data Structures for Game Programmers
查看>>
Hacking Google Maps and Google Earth
查看>>
Code Design for Dependable Systems: Theory and Practical Applications
查看>>
Elements of Information Theory
查看>>
Mastering Data Warehouse Aggregates: Solutions for Star Schema Performance
查看>>
Digital Multimedia Perception and Design
查看>>
Dreamweaver 8 All-in-One Desk Reference For Dummies
查看>>
JavaScript Design
查看>>
Beginning Mac OS X Tiger Dashboard Widget Development
查看>>
Professional Live Communications Server
查看>>
Microsoft Exchange Server 2003 Advanced Administration
查看>>
Performance Analysis of Communications Networks and Systems
查看>>
SQL Server CE Database Development with the .NET Compact Framework
查看>>
Service Design for Six Sigma: A Roadmap for Excellence
查看>>