欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

模态窗口刷新 模态窗口刷新reload 

程序员文章站 2024-03-25 16:24:52
...
html 代码:

<a id="reload" href="" style="display:none"></a> //模态链接

js 代码

this.target="_self";
var reload=document.getElementById('reload');
reload.href =  window.location.href + "&random="+Math.random();
reload.click();