<s:select list="#departmentlist" listKey="did" listValue="dname" headerKey="" headerValue="请选择部门" name="did" cssClass="SelectStyle"/>
<s:select list="#postlist" size="10" listKey="pid" listValue="pname" name="pids" headerKey="" multiple="true" cssClass="SelectStyle" headerValue="请选择岗位"/>
<input type="image" src="${pageContext.request.contextPath}/css/images/save.png"/>
$().ready(function(){
$("input[type='image']").unbind("click");
$("input[type='image']").bind("click",function() {
if($("select[name='did'] option:selected").attr("value")=="")
{
alert("请选择部门");
return false;
}else{
if($("select[name='pids'] option:selected").attr("value")=="")
{
alert("请选择岗位");
return false;
}
return true;
}
});
});
版权声明:本文为heisekankan原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。