摘要: 转自https://www.cnblogs.com/itjeff/p/11168310.html str为要去除空格的字符串: 去除所有空格: str = str.replace(/\s+/g,""); 去除两头空格: str = str.replace(/^\s+|\s+$/g,""); 去除左空 阅读全文
posted @ 2020-07-02 13:24 吴土炮Jared 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/xinaixia/p/4895119.html 经常用IIS作为下载服务器的时候有时传上去的文件比如 example.mp4 文件名上传后,但是用http打开的时候确显示为 404 文件不存在。其实是IIS对文件的一种保护,不在IIS指定的MIM 阅读全文
posted @ 2020-07-02 13:17 吴土炮Jared 阅读(912) 评论(0) 推荐(0) 编辑