摘要: 我复制的是一个html表格的内容,放到富文本框中的后,内容除了图片和自定义的a标签,img标签的样式,其他的表格样式都丢失了,然后去看了文档,找到了这个属性,亲测有效。 paste_webkit_styles: "color font-size", 阅读全文
posted @ 2023-04-25 20:53 NicoleYe 阅读(354) 评论(0) 推荐(0)
摘要: 代码: <div class="linear">实现字体颜色渐变</div> css:样式 .linear{ background-image: linear-gradient(136deg, #9A6000 0%, #533400 40%); -webkit-background-clip: te 阅读全文
posted @ 2023-04-25 19:04 NicoleYe 阅读(41) 评论(0) 推荐(0)
摘要: 字符串 => 数字: const arr= ['1', '2', '3'] arr= arr.map(Number) // [1, 2, 3] 数字 => 字符串: const arr= [1, 2, 3] arr= arr.map(String) // ['1', '2', '3'] 阅读全文
posted @ 2023-04-25 18:53 NicoleYe 阅读(145) 评论(0) 推荐(0)