level 1
xjm229224
楼主
Ext.onReady(
function TestMessageBox() {
Ext.MessageBox.prompt("测试","请输入你的留言",null,null,20);
});
后面跟的 Number 类型为什么显示不出来,能看出那边错了吗??
Ext.onReady(
function TestMessageBox() {
Ext.MessageBox.show({
title:"测试标题",
msg:"测试内容",
buttons:{
yes:true,
no:true,
cancel:true
}
});
});
为什么buttons 的按钮不显示 换成
buttons:[
{
text:yes,
text:no,
text:cancel
}
]
也是不显示 有没有好心人帮忙看下啊 谢谢
2015年01月20日 02点01分
1
function TestMessageBox() {
Ext.MessageBox.prompt("测试","请输入你的留言",null,null,20);
});
后面跟的 Number 类型为什么显示不出来,能看出那边错了吗??
Ext.onReady(
function TestMessageBox() {
Ext.MessageBox.show({
title:"测试标题",
msg:"测试内容",
buttons:{
yes:true,
no:true,
cancel:true
}
});
});
为什么buttons 的按钮不显示 换成
buttons:[
{
text:yes,
text:no,
text:cancel
}
]
也是不显示 有没有好心人帮忙看下啊 谢谢