<td><input type="button" οnclick="next(document.zm)"></td>//zm为form中 name="zm"
<script language="JavaScript">
function next(theForm){
var flag=true;
flag=vidate(theForm);
theForm.action="www.baidu.action"//url重定向
if(flag){
theForm.submit();
}
}
function vilidate(theForm){
if (theForm.textfield3.value == "")//此处取ID
{
alert("公司名不能为空;");
theForm.textfield3.focus();
return false ;
}
return true;
}
</script>
<script language="JavaScript">
function next(theForm){
var flag=true;
flag=vidate(theForm);
theForm.action="www.baidu.action"//url重定向
if(flag){
theForm.submit();
}
}
function vilidate(theForm){
if (theForm.textfield3.value == "")//此处取ID
{
alert("公司名不能为空;");
theForm.textfield3.focus();
return false ;
}
return true;
}
</script>