当前位置:网站首页>easyui dialog“缓存问题”
easyui dialog“缓存问题”
2020-11-07 20:56:00 【西门呀在吹雪】
</pre><pre name="code" class="html">var _url="addCheckIndexa.action?eval.id=-1&temp="+$('#indexId').val();
$("#editCheckIndex").dialog({
title:"新增指标",
cache:false,
href:_url,
resizable: true,
height: 400,
width: 1100,
modal: true
});
$('#editCheckIndex').dialog('open');
easyUI dialog的href动态加载的时候,弹出的dialog老是显示上一次打开的dialog页面。解决办法在open后加上一句
</pre><pre name="code" class="html">$('#editCheckIndex').dialog('open').dialog('refresh', _url);
ps:临时解决办法是这样,原因是因为啥子呢?别的项目中也没有加这句话就没有这个问题。
本文参与腾讯云自媒体分享计划,欢迎正在阅读的你也加入,一起分享。
版权声明
本文为[西门呀在吹雪]所创,转载请带上原文链接,感谢
https://cloud.tencent.com/developer/article/1744583
边栏推荐
- 在 Amazon SageMaker 管道模式下使用 Horovod 实现多 GPU 分布式训练
- From technology to management, the technology of system optimization is applied to enterprise management
- ECMAScript7规范中的instanceof操作符
- Using LWA and lync to simulate external test edge free single front end environment
- If you want to forget the WiFi network you used to connect to your Mac, try this!
- Exception calling 'downloadstring' with '1' arguments: 'operation timed out'
- Three steps, one pit, five steps and one thunder, how to lead the technical team under the rapid growth?
- What should be considered in the promotion plan outside the station?
- 深入web workers (上)
- chrome浏览器跨域Cookie的SameSite问题导致访问iframe内嵌页面异常
猜你喜欢
随机推荐
websocket+probuf.原理篇
Insight -- the application of sanet in arbitrary style transfer
[C + + learning notes] how about the simple use of the C + + standard library STD:: thread?
Big data algorithm - bloon filter
高级并发编程系列九(Lock接口分析)
Awk implements SQL like join operation
大数据算法——布隆过滤器
一万四千字分布式事务原理解析,全部掌握你还怕面试被问?
laravel8更新之维护模式改进
汇编函数mcall systemstack asmcgocall syscall
What kind of technical ability should a programmer who has worked for 1-3 years? How to improve?
Using pipe() to improve code readability in pandas
「混合云」会是云计算的下一个战场吗?
C language I blog assignment 03
Three steps, one pit, five steps and one thunder, how to lead the technical team under the rapid growth?
Using thread communication to solve the problem of cache penetrating database avalanche
Ac86u KX Online
一万四千字分布式事务原理解析,全部掌握你还怕面试被问?
Business facade and business rule
CPU瞒着内存竟干出这种事








