jQuery对话框:按钮中的变音符号

时间:2012-05-29 08:18:26

标签: jquery dialog

这是我的代码:

 $("#contactDeleteDialog").dialog({
       title: "Löschen",
                bgiframe: true,
                autoOpen: false,
                closeOnEscape: true,
                resizable:false,
                height: 150,
                modal: true,
                buttons:{
                    Löschen:function(){
                       //do something
                    },
                    Abbrechen:function(){
                      //do something else
                    }
                }
    })

标题是字符串,所以我可以使用ö代替ö。但我怎么能按钮呢?

2 个答案:

答案 0 :(得分:3)

将其括在引号中:

buttons: {
    'Löschen': function() { ... }
}

答案 1 :(得分:3)

试试这个:

"Löschen": function(){
    //do something
},