前端
文章平均质量分 52
小青蛙呱呱跳
好记性不如烂笔头,纸上得来终觉浅,绝知此事要躬行。
展开
-
Vue下载excel,easyExcel
Vue下载excel,easyExcel原创 2022-08-19 09:09:12 · 664 阅读 · 0 评论 -
hugo安装使用(window)
1、下载hugohttps://github.com/gohugoio/hugo/releases解压,配置环境变量hugo version2、创建站点项目 hugo new site miracweb创建完成3、添加主题https://github.com/devcows/hugo-universal-theme进入站点目录执行git clone https://github.com/devcows/hugo-universal-the..原创 2022-05-13 15:57:19 · 1853 阅读 · 0 评论 -
保存网页为PDF
(function(){$(" #csdn-toolbar, #tool-box").remove();$(".more-toolbox, #toolBarBox, .comment-box, .recommend-box").remove();$("aside").remove();$(".tool-box, .template-box, .footer-box").remove();//$(".aside-box, .recommend-right").remove();//$(".opti原创 2021-12-03 11:25:01 · 222 阅读 · 0 评论 -
js判断浏览器类型,判断ie内核,webkit
<script> function _mime(option, value) { const mimeTypes = navigator.mimeTypes; for (const mt in mimeTypes) { if (mimeTypes[mt][option] == value) { return true; } .原创 2021-06-16 21:30:45 · 621 阅读 · 0 评论 -
fselect下拉选择+搜索选择
1、html代码<!DOCTYPE html><html><head> <link href="jquery.fSelect.css" rel="stylesheet" type="text/css" /> <script src="jquery-1.8.3.min.js"></script> <script src="jquery.fSelect.js"></script>...原创 2020-07-15 13:39:10 · 7052 阅读 · 7 评论