随身笔记
随身笔记

前端资源

前端资源

Refused to display 'xxx.com' in a frame because it set 'X-Frame-Options' to 'sameorigin'.

'sameorigin'只允许同域名的地址在iframe中使用   解决:修改xxx.com的nginx或者apache的设置   在配置文件中加入X-Frame-Options属性的值: 参考值: add_header X-Frame-Options ALLOWALL; #允许所有域名iframe add_header X-Frame…

   548   2022-11-29   去围观

echarts地图上加多个bar柱状图

  这里只处理了海口的数据作为案例: https://sdeno.com/wp-content/uploads/2022/11/map/3.html   地图点击区域高亮参考:https://blog.csdn.net/wgf1997/article/details/124815817

   579   2022-11-16   去围观

vue滚动vue-seamless-scroll

https://chenxuan0000.github.io/vue-seamless-scroll/guide/ 本地文档:地址1   import vueSeamlessScroll from 'vue-seamless-scroll/src'; export default { name: "index", components: { vueSeamlessScroll }, data(){ ret…

   490   2022-11-16   去围观

处理vue带#号问题,html编码

html编码 encodeURIComponent("http://xxx.com/#/1.html") http%3A%2F%2Fxxx.com%2F%23%2F1.html 相应解码 decodeURIComponent('http%3A%2F%2Fxxx.com%2F%23%2F1.html') 'http://xxx.com/#/1.html'   base64方法 var Base64 = { _keyStr: "ABCDEFGHI…

   613   2022-11-09   去围观

js平台环境判断

判断 公众号 小程序 公众号 平台 判断 var ua = navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i)=="micromessenger") { //ios的ua中无miniProgram,但都有MicroMessenger(表示是微信浏览器) wx.miniProgram.getEnv((res)=>{ …

   507   2022-09-20   去围观
加载更多