?? checkboxlist.jsp
字號:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<s:form>
<!--使用簡單集合來生成多個復選框-->
<s:checkboxlist name="a" label="請選擇您喜歡的書"
labelposition="top" list="{'spring','j2ee','ajax'}"/>
<!--使用簡單Map對象來生成多個復選框-->
<s:checkboxlist name="b" label="請選擇出版日期"
labelposition="top" list="#{'spring':'2006年10月',
'j2ee':'2007年4月','ajax':'2007年6月'}"
listKey="key"
listValue="value"/>
<!--使用集合里放多個JavaBean實例來生成多個復選框-->
<s:bean name="com.briup.service.BookService" id="bs"></s:bean>
<s:checkboxlist name="b" label="請選擇您喜歡的圖書"
labelposition="top"
list="#bs.books"
listKey="name"
listValue="price"/>
</s:form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -