87,993
社区成员
发帖
与我相关
我的任务
分享
<ww:if test="%{model.personBaseInfo.picture!=null}">
<div style="width:120; height:150">
<img id="pic" src="<ww:url value="/webenroll/getWebExamineePic.action?encodeId=%{model.id}"/>" width="120" height="150">
</div>
</ww:if>
<ww:else>
<div style="width:120; height:150">
<img id="webExamineePic" src="<c:url value='/images/photo.JPG'/>" width="120" height="150">
</div>
</ww:else>
<td > <ww:file id="file" name="file" cssStyle="width:150px" theme="simple" cssClass="fontinput" onchange="changesrc()"/>
<font color="red">*</font></td>
function changesrc(){
<ww:if test="%{model.personBaseInfo.picture!=null}">
$('pic').src=document.forms.registerForm.file.value;
</ww:if>
<ww:else>
$('webExamineePic').src=document.forms.registerForm.file.value;
</ww:else>
}