|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
检测文件的扩展名 |
来源:中国站长天空 更新时间:2009/12/3 1:41:04 阅读次数: 我要投稿 |
|
<html> <head> <title>检测文件的扩展名</title> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> </head> <body> <!--把下面代码加到<body>与</body>之间--> <script language="javascript"> function check() { var str1,str2,s; str1=document.getElementById("file").value; s=str1.lastIndexOf("."); str2=str1.substring(s+1).toUpperCase(); alert(str2); } </script> <form> 检测文件的扩展名:<input type="file" name="file" id="file"> <input type="button" value="检测" onclick="check()"> </form> </body> </html> |
|
上一篇文章: 检测是否全部为中文下一篇文章: 只能输入英文和数字的文本框 |
|
|