- 博客(11)
- 收藏
- 关注
原创 blob的txt下载方式
axios.post(’/Admin/Finance/shipping_abound?submit=1’, params, {responseType: ‘arraybuffer’}).then(res => {let blob = new Blob([res.data], {type: “text/plain;charset=UTF-8”});let href = window.URL.createObjectURL(blob);const downloadElement = document
2022-04-15 16:08:58 2643
原创 gocron安装
1、安装Go使用go程序必须先有go,Linux下的安装yum install go查看安装版本go version2、下载gocronwget https://github.com/ouqiang/gocron/releases/download/v1.5.2/gocron-v1.5.1-linux-amd64.tar.gzwget https://github.com/ouqiang/gocron/releases/download/v1.5.2/gocron-node-v1.5.1-li
2022-03-04 09:39:28 1126
原创 2020-11-17
js实现整个页面禁止滚动:document.body.addEventListener(‘touchmove’, function(e){e.preventDefault();}, { passive: false }); //passive 参数不能省略,用来兼容ios和androidpassive是干吗用的呢,设置该属性的目的主要是为了在阻止事件默认行为导致的卡顿。等待监听器的执行是耗时的,有些甚至耗时很明显,这样就会导致页面卡顿。即便监听器是个空函数,也会产生一定的卡顿,毕竟空函数的执行也会
2020-11-17 13:46:33 120
原创 选中checkbox的值
$(function(){$(“input:button”).click(function() {text = $(“input:checkbox[name=‘message’]:checked”).map(function(index,elem) {return $(elem).val();}).get().join(’,’);alert(“选中的checkbox的值为:”+text);});});
2020-10-29 16:28:58 103
原创 下拉固定导航栏
Jquery:写法$(window).scroll(function () {var tabheader = $("#Ftd");var yy = $(this).scrollTop();if(yy >= 200)$(tabheader).css({“position”:“fixed”,left:“0px”,right:“0px”,top:“0px”,“width”:“100%”,“background-color”:“white”});else$(tabheader).css({“po
2020-09-25 08:59:26 250 1
原创 小程序数组求和
var a = i.data.main;a.cartList.total = t.total, a.cartList.totalprice = t.totalprice, a.cartList.list = [ 1 ],s[i.data.goodsid] = t.goodstotal,console.log(s);var nusa = Object.values(s);var nus = 0; //这里开始,求和的计算方式nus = nusa.reduce(function(prev, cur
2020-09-04 11:13:23 3413 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人