该文被密码保护。 阅读全文
摘要:
问题: 在移动端发票预览页面,IPhone手机会自动把发票代码,发票号码等数字自动识别成手机号,变色并且点击会弹出是否呼叫手机号等 解决: 在<head>...</head>之间添加以下代码即可解决。 阅读全文
摘要:
浏览器 more tools->network conditions User agent 把 select automatically 取消勾选 下面的输入框输入 阅读全文
摘要:
$(".new_mess_c img").each(function(i){ var img = $(this); var realWidth;//真实的宽度 var realHeight;//真实的高度 //这里做下说明,$("")这里是创建一个临时的img标签,类似js创建一个new Image()对象! $("").attr("s... 阅读全文
摘要:
this.axios.get('/static/json/jinxiangZhe.json').then(res=>{ console.log(res); }).catch( error => { console.log('error',error) ... 阅读全文
摘要:
$.ajax({ // url:BASEURL+'/bill/download/invoice', url:'http://loan-test.yinshuitong.com/backorg/bill/download/invoice', type:'g... 阅读全文
摘要:
/*检测是支付宝还是其他*/ var ua = window.navigator.userAgent.toLowerCase(); if(ua.match(/AlipayClient/i) == 'alipayclient') { console.log('支付宝'); } else { // InfoApi.getFingerprint(0); }; //检测微信中打开 fu... 阅读全文
摘要:
//轮播图(自动轮播,鼠标移上底部小图标切换) function imgauto(parentId, childN, LMimgs, LMlis) { var x = 0, y = 1; var firstimg = childN.children[0].cloneNode(true); var lastimg = childN.children[LMimgs.lengt... 阅读全文
摘要:
var docEl = document.documentElement,resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize'; var clientWidth = docEl.clientWidth; if(clientWidth>=750){ docEl.style.fontSize = ... 阅读全文
摘要:
- $('#start').datebox({ onShowPanel : function() {// 显示日趋选择对象后再触发弹出月份层的事件,初始化时没有生成月份层 span.trigger('click'); // 触发... 阅读全文
摘要:
//yyyyMMdd 转换为 yyyy-MM-dd function changeDate(str){ return str.replace(/^(\d{4})(\d{2})(\d{2})$/, "$1-$2-$3"); } 阅读全文
摘要:
jquery的时间插件 阅读全文
摘要:
1. 二: 同时监听两个输入框,如果两个都有值才执行一些方法 用computed 判断两个时间都有 加判断,结束时间必须大于开始时间(数据双向绑定) 完整代码: 阅读全文
摘要:
parent页面 child页面 里面有一个按钮,点击跳转页面,如果直接写location.href ='',还是在iframe中 如果跳转的页面不想在iframe中,可以加一个parent 阅读全文
摘要:
npm install -g cnpm --registry=https://registry.npm.taobao.org 阅读全文
摘要:
1.折线面积图加颜色 2.折线面积图颜色渐变 3.圆角的柱状图 4.自定义鼠标移上提示框 不加formatter时,鼠标移上展示: 自定义formatter后,鼠标移上展示: 5.改变饼图的连接线长度 6.图表的位置 阅读全文
摘要:
折线图,这样写,出来的图错乱 40在200栏目里 解决方法: 把stack去掉 阅读全文