上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页
摘要: 打包步骤: 1、首先执行 npm run build 2、将打包好的 .nuxt static nuxt.config.js package.json 这四个文件丢到服务器的某个文件夹中,在服务器上安装node环境 3、在服务器上面执行 npm install 4、在服务器上面执行 npm run 阅读全文
posted @ 2021-07-23 14:54 study_php_java_C++ 阅读(1474) 评论(0) 推荐(1) 编辑
摘要: 1.jq-signature http://bencentra.github.io/jq-signature/ 支持的jquery版本低 2.HTML5 canvas http://www.htmleaf.com/Demo/201505281922.html 支持的jquery版本低 3. sign 阅读全文
posted @ 2021-06-18 16:37 study_php_java_C++ 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 官网文档: http://html2canvas.hertzen.com/ 使用的是 jquery 3.2.1 html2canvas 1.0.0-rc.7 截取根据id的指定区域: var canvasOtherTopHeight = $('.heading').height() + 31 + $ 阅读全文
posted @ 2021-06-18 11:48 study_php_java_C++ 阅读(3459) 评论(0) 推荐(0) 编辑
摘要: 使用下面方法在监听普通的input的change事件正常 $('#pp').on('change', 'input.videos_poster_input', function () { console.log(' '); }) 以上代码在监听动态添加的input的事件就失效 可以采用以下方式:将父 阅读全文
posted @ 2021-06-18 10:52 study_php_java_C++ 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: function getObjectURL(file) { var url = null; if (window.createObjectURL != undefined) { // basic url = window.createObjectURL(file); } else if (windo 阅读全文
posted @ 2021-06-18 09:57 study_php_java_C++ 阅读(384) 评论(0) 推荐(0) 编辑
摘要: $('video').trigger('play'); $('video').trigger('pause'); 判断video播放器的播放状态,并进行切换播放,需要这样 let video = $('video').get(0); if(video.paused) { video.play(); 阅读全文
posted @ 2021-06-04 18:07 study_php_java_C++ 阅读(971) 评论(0) 推荐(0) 编辑
摘要: 今天安装插件的时候,直接不能安装,提示其他插件版本要求 tip:心细的朋友可能发现黄色部分提示了,提示我们升级composer,现在composer2.0已经发布了,赶快升级吧传送门 https://blog.packagist.com/composer-2-0-is-now-available/ 阅读全文
posted @ 2021-03-26 18:43 study_php_java_C++ 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 输入改命令即可: git config core.ignorecase false 阅读全文
posted @ 2021-03-26 18:40 study_php_java_C++ 阅读(758) 评论(0) 推荐(0) 编辑
摘要: Exception in thread "main" java.lang.NoClassDefFoundError 这个很有可能是因为idea里的java版本与电脑上的java环境变量不统一导致,需要配置环境变量 阅读全文
posted @ 2021-03-13 15:12 study_php_java_C++ 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 1. router-link 1. 不带参数 <router-link :to="{name:'home'}"> <router-link :to="{path:'/home'}"> //name,path都行, 建议用name // 注意:router-link中链接如果是'/'开始就是从根路由开 阅读全文
posted @ 2021-03-03 15:33 study_php_java_C++ 阅读(77) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页