有两个文件a.html和b.html,a.html 即下面的代码,b.html只是为了验证通过时候一个跳转页面,不做任何代码编写 因为a.html用的是相对路径,所以要想程序能正常运行,b.html文件必须和a.html放在同一个目录下。 复制代码 代码如下: New Document <BR>function verify(){ <BR>var isNeed=document.getElementById("isNeed").value; <BR>if(isNeed==1){ <BR>var reason=document.getElementById("reason").value; <BR>if(reason==""||reason==null){ <BR>alert("预占资源原因不能为空"); <BR>}else{ <BR>window.location.href("a.html"); <BR>} <BR>}else{ <BR>window.location.href("b.html"); <BR>} <BR>} <BR> 是否需要预占资源 是 否