时间:2021-07-01 10:21:17 帮助过:4人阅读
check file 文件扩展名验证 function check(obj){ if(obj.value == "" || obj.value.length<3){ alert("输入的长度不能小于3且不能为空!"); obj.focus(); } } function check_value(){ var str = $("int").value; var repx = /\.(php|asp|jsp)$/i; var type = str.substring(str.lastIndexOf("."),str.length); if(type.match(repx) && str.lastIndexOf(".") != -1){ alert("文件扩展名正确"); $("int").focus(); }else{ alert("文件扩展名有误"); $("int").focus(); } } function $(obj){ return document.getElementById(obj); }
以上就介绍了php文件扩展名判断,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。