function CheckWorkFile() { var obj=document.getElementById('fuMain'); if(obj.value=='') { alert('Please select the assignment book file to upload'); return false; } var stuff=obj.value.match(/^(.*)(.)( .{1,8})$/)[3]; if(stuff!='doc') { alert('The file type is incorrect, please select the .doc file'); return false; } return true; }
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn