“Html:Notify”的版本间的差异
来自小鱼君和他的朋友们
([InPageEdit] 没有编辑摘要) |
小 ([InPageEdit] 没有编辑摘要) |
||
第1行: | 第1行: | ||
{{#tag:html| | {{#tag:html| | ||
− | <script> | + | <includeonly><script></includeonly> |
− | // | + | // <pre>// 以一秒十次的频率疯狂尝试调用ssi-modal,直到插件加载完毕 |
window.addEventListener('load',function(){ | window.addEventListener('load',function(){ | ||
var postNotify = setInterval(function(){ | var postNotify = setInterval(function(){ | ||
第16行: | 第16行: | ||
},100); | },100); | ||
}); | }); | ||
− | </script> | + | <includeonly></script></includeonly> |
}} | }} |
2019年11月20日 (三) 03:23的版本
//
// 以一秒十次的频率疯狂尝试调用ssi-modal,直到插件加载完毕 window.addEventListener('load',function(){ var postNotify = setInterval(function(){ if (typeof(ssi_modal) !== 'undefined') { ssi_modal.notify('',{ title: '', content: '', closeAfter: { time: 15 } }); clearInterval(postNotify); } },100); });