<%
String name =request.getParameter("username");
String status =(String)session.getAttribute("status");
String username =(String)session.getAttribute("username");
String rank =(String)session.getAttribute("rank");
%>
function CheckForm(){
var filepath = document.getElementById("File").value;
/*if(<%=status%>=="")
{
alert("您还没有登录");
return false
}
else{
if(<%=rank%>=="1"){
alert("您没有上传权限");
return false
}
}*/
if(filepath=='')
{
alert("请上传文件或视频!");
form1.File.focus();
return false;
}
if(filepath!='') //获取欲上传的文件路径
// var filepath = document.getElementById("File").value;
//为了避免转义反斜杠出问题,这里将对其进行转换
{
var re = /(\\+)/g;
var filename=filepath.replace(re,"#");
//对路径字符串进行剪切截取
var one=filename.split("#");
//获取数组中最后一个,即文件名
var two=one[one.length-1];
//再对文件名进行截取,以取得后缀名
var three=two.split(".");
//获取截取的最后一个字符串,即为后缀名
var last=three[three.length-1];
//添加需要判断的后缀名类型
var tp ="doc,ppt,txt,xls,rmvb,mp4,avi";
//返回符合条件的后缀名在字符串中的位置
var rs=tp.indexOf(last);
//如果返回的结果大于或等于0,说明包含允许上传的文件类型
if(rs==-1){
alert("您上传的文件不被允许!");
//$('#subbutton').attr("disabled", "disabled");
return false;
}
}
var list = document.getElementsByName("a");
for( i =0 ; i<list.length; i++ )
{
if( list[i].checked == true )
{
if(list[i].value=="1")
{
if(/\.(txt||ppt||doc||xls)$/.test(document.getElementById('File').value)) {
alert("您选择的是视频,请上传视频!");
document.getElementById('File').value ="";
return false; }
else {
alert("上传成功");
return true;
}
break;
}
}
if(list[i].value=="2")
{
if (/\.(mp4||avi||rmvb)$/.test(document.getElementById('File').value)) {
alert("您选择的是文件,请上传文件!");
document.getElementById('File').value = "";
return false; }
else {
alert("上传成功");
return true;
}
break;
}
}
}
把上传权限的代码(黄色部分)注释掉一切功能 都可以了,加上,提交表单,页面直接消失了,百思不得其解。
应该是代码出错了 所以后面的js都不加载了 if(<%=status%>=="") 在源代码里面应该是这样的 if(=="") 你看看