# web-nav **Repository Path**: im_winter/web-nav ## Basic Information - **Project Name**: web-nav - **Description**: 项目预览:http://im_winter.gitee.io/web-nav/src/index.html - **Primary Language**: CSS - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-03 - **Last Updated**: 2021-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # web-nav ### 介绍 项目预览 http://im_winter.gitee.io/web-nav/dist/index.html ### 功能 #### 简化url - 当用户输入的url很长时,简化url ``` const simplifyUrl=(url)=>{ return url.replace('https://','') .replace('http://','') .replace('www.','') .replace(/\/.*/,'') //删除 / 开头的内容 } ```