摘要: let str = "Hello world"; str.endsWith("world") // 返回 true str.endsWith("World") // 返回 false endsWith() 方法用来判断当前字符串是否是以指定的子字符串结尾的(区分大小写)。 如果传入的子字符串在搜索字 阅读全文
posted @ 2023-02-23 11:21 SimoonJia 阅读(201) 评论(0) 推荐(0) 编辑
摘要: IE9及以下不支持下面这些功能,其它浏览器最新版本均已支持。 1、允许上传文件数量 允许选择多个文件:<input type="file" multiple> 只允许上传一个文件:<input type="file" single> 2、上传指定的文件格式 如指定默认格式为gif、png:<inpu 阅读全文
posted @ 2023-02-23 10:28 SimoonJia 阅读(3519) 评论(0) 推荐(0) 编辑