摘要:
/*检测是支付宝还是其他*/ 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... 阅读全文