Chrome更新89版本后,sessionStorage丢失a标签跳转丢失sessionStorage
最简单的解决办法 - a标签添加属性 rel="opener"
Chrome对于a标签默认添加了noopener属性,所以通过a标签跳转,会丢失新页面的控制...
yekong
4年前 (2021-05-07)
喜欢
之前下载页面一直使用的单页模板扒手,随着大部分网址都升级到https免费单页模板扒手已经不够用了,最近学了python 就想着用 python写一个。
github
https://github.com/yelingkong/python-html-down
使用方法
安装依赖
...
yekong
4年前 (2021-05-05)
喜欢
LinearGradient
color: [ //仪表盘背景颜色渐变
[1,new echarts.graphic.LinearGradient(0, 0, 1, 0,
[
{
offset: ...
yekong
4年前 (2021-05-04)
喜欢
getecharts() {
window.addEventListener("resize", function () {
myChart.resize();
});
...
yekong
4年前 (2021-05-04)
喜欢
进入python 项目下
pip freeze > requirements.txt
生成的requirements.txt就记录了当前所有已经安装的依赖
将生成的requirements.txt 拷贝到需要安装同样依赖的机器上
执行命令
pip install -r r...
yekong
4年前 (2021-05-03)
喜欢
moment().format('E')
返回的是数字,如果需要中文
html
星期{{ week|getweek }}
可以设置过滤器
filters: {
getweek(e) {
var week = ['一', ...
yekong
4年前 (2021-05-02)
喜欢
label: {
normal: {
show: true,
formatter(params) {
return `{enterprise|${'企业'}}\n{experts|${'专家'}}`;
},
position...
yekong
4年前 (2021-05-02)
喜欢
<li v-for="(item,index) in listTemp" :key="index">
<div v-for="(cell,i) in item" :key="i&q...
yekong
4年前 (2021-05-02)
喜欢
# custom PhpStorm properties
idea.max.intellisense.filesize=5000
重启phpstorm搞定
...
yekong
4年前 (2021-05-01)
喜欢
window.addEventListener("resize", function() {
myChart.resize();
});
myChart.on('click', function(params) {
...
yekong
4年前 (2021-04-30)
喜欢