Posted in Javascript onMay 05, 2014
前台调用如下
OnClientClick="return fucCheckJpgAndGif(form1.File1.value);" --其中File1为上传文件控件
函数代码:
function fucCheckJpgAndGif(strFileName) { if (strFileName != "") { var strtype = strFileName.substring(strFileName.length - 4, strFileName.length); strtype = strtype.toLowerCase(); if ((strtype == ".jpg") || (strtype == ".gif") || (strtype == "jpeg") || (strtype == ".bmp")) { return true; } else { alert("请上传jpg、gif或者bmp格式的图片,谢谢!"); return false; } } alert("请上传jpg、gif或者bmp格式的图片,谢谢!");/* from http://yige.org/js/ */ return false;}
JavaScript验证图片类型(扩展名)的函数分享
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@