我正在使用 struts 2 标记迭代 jsp 文件中的列表,如下所示。
<%@ taglib prefix="s" uri="/struts-tags"%>
<head>
<s:head theme="ajax" debug="true" />
<script type="text/javascript">
function add(x) {
document.insertForm.action="load.action?mode=add&index="+x;
document.insertForm.submit();
}
function del(x) {
document.insertForm.action="load.action?mode=delete&index="+x;
document.insertForm.submit();
}
function copy(x) {
document.insertForm.action="load.action?mode=copy&index="+x;
document.insertForm.submit();
}
function validateDate(date) {
for(var i=0; i<date.length; i++) {
var x = date[i].value;
if(x == null || x == "") {
alert("please enter the date");
date[i].focus();
return false;
}
}
}
</script>
</head>
<body>
<s:form action="insert" name="insertForm">
<table border="1">
<tr>
<th>CHANNEL_ID</th>
<th>TASK</th>
<th>DATE</th>
<th>HOURS</th>
</tr>
<s:iterator value="timeTrackerRecords" status="stat">
<tr>
<td align="center"><s:select name="timeTrackerRecords[%{#stat.index}].channel_Id"
list="channelList" value="%{channel_Id}" theme="simple"
cssStyle="width:90px;">
</s:select></td>
<td align="center"><s:select name="timeTrackerRecords[%{#stat.index}].task" list="taskList"
value="%{task}" theme="simple" cssStyle="width:90px;">
</s:select></td>
<td><s:datetimepicker name="timeTrackerRecords[%{#stat.index}].date"
value="%{date}" displayFormat="yyyy-MM-dd" theme="simple" />
</td>
<td align="center"><s:textfield name="timeTrackerRecords[%{#stat.index}].hours" theme="simple"
value="%{hours}" cssStyle="width:90px;" ></s:textfield></td>
<td>
<input type="submit" value="Add" onclick="add('<s:property value="%{#stat.index}" />')" />
</td>
<td>
<input type="submit" value="Del" onclick="del('<s:property value="%{#stat.index}" />')" />
</td>
<td>
<input type="submit" value="Copy" onclick="copy('<s:property value="%{#stat.index}" />')" />
</td>
</tr>
</s:iterator>
</table>
<br>
<s:submit value="Insert" align="left" onclick="return validateDate(document.insertForm.date)"/>
</s:form>
</body>
日期验证不适用于下面的代码行。在 validateDate(date) 函数内部,日期未定义。
<td><s:datetimepicker name="timeTrackerRecords[%{#stat.index}].date"
value="%{date}" displayFormat="yyyy-MM-dd" theme="simple" />
</td>
日期验证正在使用下面的代码行。
<td>
<s:datetimepicker name="date" value="%{date}" displayFormat="yyyy-MM-dd" theme="simple" />
</td>
唯一的区别是声明日期字段如下。
name="date"
name="timeTrackerRecords[%{#stat.index}].date" (is used to pass the form data(date) to action class)
请求你帮我解决这个问题。
提前致谢。