0

那是我的代码:

 $("#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
                    }
                }
    })

标题是字符串,所以我可以使用 ö 表示 ö。但是我该怎么做呢?

4

2 回答 2

3

用引号括起来:

buttons: {
    'Löschen': function() { ... }
}
于 2012-05-29T08:19:50.883 回答
3

试试这个:

"Löschen": function(){
    //do something
},
于 2012-05-29T08:20:05.120 回答