-2

在以下代码中,我得到了所需的输出

fn: function(btn) {
switch(btn){
case 'yes':
Ext.Msg.prompt('Milton', 'Where is it?');
break;
case 'no':
Ext.Msg.alert('Milton',
'Im going to burn the building down!');
break;
case 'cancel':
Ext.Msg.wait('Saving tables to disk...','File Copy');
break;
}
}

这工作得很好。现在我正在尝试在“是”开关中进行函数调用,但屏幕上没有任何输出。
这是我正在使用的代码。

case 'yes':
Ext.Msg.prompt('Milton', 'Where is it?', function(btn,txt)
{
if (txt.toLowerCase() == 'the office') {
Ext.get('my_id').dom.innerHTML = 'Dull Work';
}else{
Ext.get('my_id').dom.innerHTML = txt;
}
Ext.DomHelper.applyStyles('my_id',{
background: 'transparent
url(images/stapler.png) 50% 50% no-repeat'
});
});
break;

在 swich case 'yes' 中使用此代码,我得到一个空白屏幕。连对话框都消失了。请帮忙。

4

1 回答 1

0

这是一个非常基本的 javascript 错误。字符串不能超过行尾。这将起作用。

case 'yes':
Ext.Msg.prompt('Milton', 'Where is it?', function(btn,txt){
    if (txt.toLowerCase() == 'the office') {
        Ext.get('my_id').dom.innerHTML = 'Dull Work';
    }else{
        Ext.get('my_id').dom.innerHTML = txt;
    }
    Ext.DomHelper.applyStyles('my_id',{
        background: 'transparent url(images/stapler.png) 50% 50% no-repeat'
    });
});
break;

在控制台中我得到了错误SyntaxError: Unexpected token ILLEGAL

于 2013-10-11T09:46:02.313 回答