JavaScript
风铃峰顶
个人项目经历请搜索:
http://www.haoranhaoshi.top/
展开
-
VS Code软妹音程序员鼓励师插件安装
https://saekiraku.github.io/vscode-rainbow-fart/#/zh/转载 2020-06-23 09:25:56 · 743 阅读 · 0 评论 -
JS 页面跳转 传参
当前页跳转:if(isManager){ window.location.href= serverAddress + "manage.html"; } else { window.location.href= serverAddress + "attence-record.html?staffName=" + faceMatch...原创 2020-08-25 08:29:04 · 371 阅读 · 0 评论 -
js文件修改后浏览器不能及时更新的解决办法之Google Chrome
谷歌浏览器,开发者模式(F12)下:进入settings中勾选Disable cache选项,就可以解决如题的问题了。转载 2020-04-11 16:30:25 · 391 阅读 · 0 评论 -
JS或Java返回当前城市的方式积累
返回Html:http://pv.sohu.com/cityjson?ie=utf-8返回JS:http://ip.ws.126.net/ipqueryhttps://whois.pconline.com.cn原创 2020-03-28 22:09:56 · 230 阅读 · 0 评论 -
禁止ajax使用缓存,重新到服务端请求数据
jquery的ajax不到服务端请求,使用了缓存数据。参考:https://blog.csdn.net/weixin_41237259/article/details/86622158https://blog.csdn.net/yangxuesong5555/article/details/79417455推荐最优解:调用$.ajax方法前执行一句禁止缓存即可:$.ajax...原创 2020-02-03 17:02:18 · 151 阅读 · 0 评论 -
已拦截跨源请求:同源策略禁止读取位于...的远程资源。(原因:CORS 请求未能成功)。
已拦截跨源请求:同源策略禁止读取位于 http://192.168.43.207:8080/manager/login?name=hao&password=111 的远程资源。(原因:CORS 请求未能成功)。IE中可以正常运行,但Firefox报错,参考了官方文档(https://developer.mozilla.org/zh-CN/docs/Web/HTTP/CORS/Err...原创 2020-02-02 17:55:38 · 8082 阅读 · 6 评论 -
JS url中放json字符串参数
https://www.w3school.com.cn/js/jsref_encodeuri.aspurl直接带json字符串参数,然后传的url换成encodeURI(url)即可。url根据浏览器内核和服务器会限制长度,如果传参时无法掌控json字符串长度,推荐post方式传此json字符串参数...原创 2020-01-29 21:43:26 · 1253 阅读 · 0 评论 -
const、let、var的区别
const只能在块({})内访问,且基本数据类型(Undefined、Null、Boolean、Number和String)赋值后不能再次赋值,如果给复杂数据类型(Object)赋值,赋值后可以修改属性,但不能赋予新Object。let只能在块内访问,赋值后可以再次赋值。var不仅能在块内访问,还能在函数内访问,但不能在函数外访问。参考:https://blog.csdn.net/un...原创 2019-12-17 15:52:36 · 105 阅读 · 0 评论 -
JS 对象数组以及类对象的深拷贝
var newObjectArrayWithDeepCopy = function(items) { var newObjectArray = new Array() for (var itemIndex = 0; itemIndex < items.length; itemIndex++) { newObjectArray[itemIndex] = deepCopy(it...原创 2019-11-10 20:28:15 · 198 阅读 · 0 评论 -
JS Map按照key进行排序
var sortMap = function(map, isKeyUpSort) { let keys = new Array() for (var key of map.keys()) { keys.push(key) } if (isKeyUpSort) { keys.sort(function(key1, key2) { return key1...原创 2019-10-13 15:32:36 · 6941 阅读 · 0 评论 -
处理js关于float加和乘的bug
var addNum = function (num1, num2) {//加 var sq1, sq2, m; try { sq1 = num1.toString().split(".")[1].length; } catch (e) { sq1 = 0; } try { sq2 = num2.toString().split(".")[1].length; } ...原创 2018-05-19 16:44:52 · 714 阅读 · 0 评论 -
图片上传(ajax通过base64格式的字符串方式上传图片至服务端)
(1)getBase64(imgPath);//path为img路径(2)function getBase64(imgPath) { //图片转base64 function getBase64Image(img, width, height) { //width、height调用时传入具体像素值,控制大小 ,不传则默认图像大小 var canvas = document.createE...原创 2018-05-05 18:11:10 · 3155 阅读 · 0 评论 -
图片加载失败后的处理
$(".headImg img").error(function() { $(".headImg img").attr("src", "images/defaultHead.jpg");//加载默认图片 $(".headImg img").error(null); //防止死循环 })$("#serverItems img").error(function() { var itemI原创 2018-05-05 17:12:20 · 1044 阅读 · 0 评论 -
js、mui相关零散知识点
document.querySelector('#a')document.getElementById('a')$('#a')mui('#a')document.getElementById('a').setAttribute('class', 'change');$("#a").attr("class","change");document.getElementById('a').style.c...原创 2018-05-05 15:18:13 · 241 阅读 · 0 评论 -
初始化及改变窗体大小时窗体滚至底
$(window).scrollTop($(document).height() - $(window).height());//滚至底$(window).resize(function(){ $(window).scrollTop($(document).height() - $(window).height());//滚至底});原创 2018-05-05 14:54:28 · 136 阅读 · 0 评论 -
修改jQgrid特定行的背景色
修改jQgrid特定行的背景色:html:<div id="jqgrid"> <table id="list"></table> <div id="pager"></div> </div>js:jQuery("#list").jqGrid({gridCo原创 2018-05-03 15:42:02 · 1349 阅读 · 0 评论 -
jQgrid常用的知识点
jQgrid常用的知识点:一、html: <div id="jqgrid"> <table id="list"></table> <div id="pager"></div> </div>二、js:jQuery("#list").jqGrid({ d原创 2018-05-03 15:34:47 · 216 阅读 · 0 评论 -
包装Ajax,分离请求和成功后的操作
包装Ajax的方法:var getServerProcess = function(method, callback) { var soap = "<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'><soap:Body>" + "<ns:" + method + " xmlns...原创 2018-05-03 15:13:01 · 365 阅读 · 0 评论 -
Uncaught SyntaxError: Unexpected token u
Uncaught SyntaxError: Unexpected token u 检查js代码中是否含有json解析的代码如JSON.parse,JSON.parse在传参数是未定义时会出现该异常且可能存在控制台查看的位置不正确的情况(无法找到真正出问题的语句)...原创 2018-05-03 15:05:23 · 4393 阅读 · 0 评论