随笔分类 -  JS

摘要:目的:使用html2canvas画布去截取下来的图片,然后去尝试解析其图片用来识别条形码和二维码 代码: <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta 阅读全文
posted @ 2024-11-18 09:11 蜗牛的礼物 阅读(35) 评论(0) 推荐(0) 编辑
摘要:代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>商品图片放大镜</title> </head> <style> body { margin: 0; padding: 0; } #app { padding: 10px; 阅读全文
posted @ 2024-11-08 10:11 蜗牛的礼物 阅读(2) 评论(0) 推荐(0) 编辑
摘要:代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="./ 阅读全文
posted @ 2024-11-08 10:10 蜗牛的礼物 阅读(9) 评论(0) 推荐(0) 编辑
摘要:代码: <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, init 阅读全文
posted @ 2024-11-08 09:47 蜗牛的礼物 阅读(190) 评论(0) 推荐(0) 编辑
摘要:1.采用有道的接口 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>语音播报</title> </head> <body> <button onclick='voiceBroadcast("微信收款10000000元")'>点击 阅读全文
posted @ 2024-11-05 21:44 蜗牛的礼物 阅读(20) 评论(0) 推荐(0) 编辑
摘要:代码: var mDPS = ""; if (multipleDispatchID != '') { const arr = multipleDispatchID.split(/[(\r\n)\r\n]+/); const arr1 = Unique(arr) for (var i = 0; i < 阅读全文
posted @ 2024-10-28 10:56 蜗牛的礼物 阅读(7) 评论(0) 推荐(0) 编辑
摘要:1.根据title名字 window.parent.$("#mainTab").tabs('close', 'title名字'); 2.根据index var tab = window.parent.$('#centerTab').tabs('getSelected');//获取当前选中tabs v 阅读全文
posted @ 2023-10-09 15:11 蜗牛的礼物 阅读(110) 评论(0) 推荐(0) 编辑
摘要:好久没碰过EasyUI了,列个目前使用的(以备不时之需-毕竟有些参数官网找得慢) 1.基础设置 //获取值 $('#id').combobox('getValue'); $('#id').textbox('getValue'); $('#id').checkbox('options').checke 阅读全文
posted @ 2023-07-04 17:33 蜗牛的礼物 阅读(344) 评论(0) 推荐(0) 编辑
摘要:需求:JS下载后台返回的url 场景:用过window.open和window.location.href,效果不理想,都是打开一个新的网页(碰到txt和png是直接打开,不下载) 上代码: function downFile(id,fileName) { $.get('Url', { id: id 阅读全文
posted @ 2023-02-28 16:36 蜗牛的礼物 阅读(294) 评论(0) 推荐(0) 编辑
摘要:场景:使用ajax提交文件,因为以前都是用formSubmit/其他提交ajaxForm帮组JS,这次碰到的不想引用js //上传 $("#btnUpload").on("click", function () { var data = new FormData(); var name = $('# 阅读全文
posted @ 2022-05-13 15:36 蜗牛的礼物 阅读(1579) 评论(0) 推荐(0) 编辑
摘要:1.将3ds做好的模型导出成obj(你会得到.obj和.mtl文件) 2.代码 1)页面代码 <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1. 阅读全文
posted @ 2022-02-10 16:27 蜗牛的礼物 阅读(2754) 评论(0) 推荐(0) 编辑
摘要:1.文件结构(如下) 2.代码 1)index.html <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta http-equ 阅读全文
posted @ 2022-01-25 11:47 蜗牛的礼物 阅读(192) 评论(0) 推荐(0) 编辑
摘要:<html> <head> <meta charset="utf-8" /> <title>VueTest</title> <script src="./vue.js"></script> </head> <body> <div id='box'> {{a | dzw}} </div> <scrip 阅读全文
posted @ 2021-07-20 16:07 蜗牛的礼物 阅读(41) 评论(0) 推荐(0) 编辑
摘要:<html> <head> <title>测试</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <div id='t'></div> </body> <script> 阅读全文
posted @ 2021-06-07 11:40 蜗牛的礼物 阅读(869) 评论(0) 推荐(0) 编辑
摘要:<html> <head> <title>ajaxTest</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <div id='tData'></div> <input 阅读全文
posted @ 2021-06-07 10:47 蜗牛的礼物 阅读(134) 评论(0) 推荐(0) 编辑
摘要:使用AdminLTE-3.0.5框架中用到的一个翻页控件 官网地址:http://datatables.club/ 引用: <link rel="stylesheet" href="/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css"> 阅读全文
posted @ 2021-01-12 15:44 蜗牛的礼物 阅读(504) 评论(0) 推荐(0) 编辑
摘要:在此记录下: 正常情况下我们的data:$('#form').serialize(),但是这个只是序列化了表单的数据,不带上file文件,并且,我们需要使用原生的JS获取form( document.getElementById),这和JQ的$('#form') 获取到的对象的节点不一样 var f 阅读全文
posted @ 2021-01-06 11:27 蜗牛的礼物 阅读(982) 评论(0) 推荐(0) 编辑
摘要:场景:在modal里头的日期控件初始化异常 思考:应该是初始加载被隐藏了,打开的时候再次加载看看 显示后执行: $('#editModal').on('shown.bs.modal', function () {//出生日期 $('#birthDay').datepicker({ language: 阅读全文
posted @ 2020-12-29 13:54 蜗牛的礼物 阅读(442) 评论(0) 推荐(0) 编辑
摘要:<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>简繁体转换带cookie</title> <script src='jf.js'></script> </head> 阅读全文
posted @ 2020-11-26 11:04 蜗牛的礼物 阅读(468) 评论(0) 推荐(0) 编辑
摘要:echarts定时渲染地图出现浏览器内存溢出问题(echarts渲染刷新导致浏览器卡) 处理方式: 1)将定时变化的option内容单独提取定时刷新 2)先setOption数据后再clear(),之后再次setOption() 例如: function Z(data) { var x = 119. 阅读全文
posted @ 2020-08-19 22:56 蜗牛的礼物 阅读(3205) 评论(1) 推荐(1) 编辑