Dialog
//生成一个Dialog对象 var dialog=$we.widget.add('Dialog', { mask:true,//是否需要遮盖层 close:true,//是否需要关闭按钮 title:'我是标题。。。',//对话框标题 subTitle:'我是副标题。。。',//副标题 content:'对话框内容...对话框内容...对话框内容...', //对话框的内容 bottom:'底部内容...底部内容...底部内容...' //底部内容 } ); //打开Dialog dialog.open(); //重新渲染对话框的内容 dialog.renderContent('重新渲染对话框的内容');
//生成一个表单对话框对象 var dialog=$we.widget.add('FormDialog', { mask:true, close:true, width:600, title:'我是一个表单', form_elements:[ {label:'输入框1',name:'aaa'},{label:'输入框2',name:'bbb'}, {label:'输入框3',name:'ccc'},{label:'输入框4',name:'ccc'}, {label:'输入框5',name:'ddd'}], notice_button_config:[{name:'确认',click:function(t){t.close();}}] } ); dialog.open();
//Alert框 $we.comp.alert('您的消息已经发送');
//Confirm框 $we.comp.confirm('是否确认此操作?',function(){alert('yes');},function(){alert('no');});