2

メッセージボックスの「はい」ボタンまたは「いいえ」ボタンをクリックすると、マイページが別のページに遷移します。

Ext.Msg.show({
 title:'Register',
 msg: 'You are successfully registered. Would you like to continue?',
 buttons: Ext.Msg.YESNOCANCEL 
 });
4

1 に答える 1

3
Ext.Msg.show({
    title: 'Register',
    msg: 'You are successfully registered. Would you like to continue?',
    buttons: Ext.Msg.YESNOCANCEL,
    callback: function(btn) {
        if (btn == 'yes') {
            window.location = 'newpage.html';
        }
    }
}); 
于 2013-08-05T08:55:05.773 に答える