<s:head theme="ajax"/>,
就可以直接使用s:datetimepicker的标签了。
而在2.1.6版本中不能直接这样使用了,将datetimepicker移除了。
原因是此标签调用了dojo的datetimepicker的库。
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
- <s:head theme="xhtml"/>
- <sd:head parseContent="true"/>
pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
<!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>struts2.1的新标签</title>
<!-- 记住加上下面这一句话 -->
<sx:head/>
</head>
<body>
<b>设置最简单datetimepicker标签 :</b>
<br>
<sx:datetimepicker name="birthday" label="出生日期" />
<br>
<br>
<sx:datetimepicker name="birthday" label="出生日期"
displayFormat="yyyy年MM月dd日" displayWeeks="4" />
<br>
<br>
<sx:datetimepicker name="birthday" label="出生日期"
weekStartsOn="1" toggleType="fade"/>
<br>
<br>
<sx:datetimepicker type="time" name="birthday" label="出生日期" displayFormat="HH:mm:ss"/>
<br>
<br>
<sx:datetimepicker name="birthday"
toggleType="explode" toggleDuration="400" />
<br>
<sx:datetimepicker name="birthday" type="time"
toggleType="explode" toggleDuration="400"
displayFormat="yyyy-MM-dd hh:mm:ss" />
</html>