dojo小例子(1):通过动态替换dijit/Dialog的内容,告诉用户表单提交进度(正在提交、成功、失败)

前端之家收集整理的这篇文章主要介绍了dojo小例子(1):通过动态替换dijit/Dialog的内容,告诉用户表单提交进度(正在提交、成功、失败)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div id="submitMsgDialog" data-dojo-type="dijit/Dialog" style="width: 400px;" data-dojo-props="closable:true,draggable:true" ></div>
var dlg = dijit.byId("submitMsgDialog");  
dlg.titleBar.style.display='none'; // 不显示标题栏  
dlg.set("content","正在提交...");  
dlg.show();  
。。。。。。
dlg.set("content","提交成功!");  
dlg.titleBar.style.display=''; // 显示标题栏  
window.setTimeout(function(){dlg.hide()},2000); // 2秒后提示消失
原文链接:https://www.f2er.com/dojo/291231.html

猜你在找的Dojo相关文章