1,test() 方法用于检测一个字符串是否匹配某个模式.
if (!file || !/image\//.test(file.type)) return;
这是检测 file.type 是否包含 image/ 这个字符串 ,包含就返回true,不然就返回false。
<script type="text/javascript"> var str = "Visit W3School"; var patt1 = new RegExp("W3School"); var result = patt1.test(str); document.write("Result: " + result); </script>