日常开发记录-js方法删除字符串最后一位
摘要:// js方法删除字符串最后一位 let str = '123456&' str = str.substr(0, str.length-1) console.warn(str) // 123456
阅读全文
posted @
2022-12-23 14:22
法老的微笑
阅读(127)
推荐(0) 编辑
日常开发记录-u-search组件苹果手机icon图片显示异常-多出一个搜索图标
摘要:在ios15 使用u-search搜索图标显示异常,如图 在App.vue文件中添加css样式即可解决 input[type="search"]{ -webkit-appearance:none; } [type="search"]::-webkit-search-decoration { disp
阅读全文
posted @
2022-12-19 10:40
法老的微笑
阅读(235)
推荐(0) 编辑