How to have jquery upload accept all file types but php & js

痞子三分冷 提交于 2019-12-11 02:59:34

问题


I have this line on Jquery file upload:

'accept_file_types' => '/.+$/i',

how to I modify that so it accepts all file types except PHP and Javascript files?


回答1:


original

'accept_file_types' => '/.+$/i',

change with

'accept_file_types' => '/\.(gif|jpe?g|png)$/i'

or add new extension

'accept_file_types' => '/\.(gif|jpe?g|png|zip|pdf)$/i'


来源:https://stackoverflow.com/questions/14741239/how-to-have-jquery-upload-accept-all-file-types-but-php-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!