例如,我使用带有此代码的 jqueryui,对话框插件。
$( "#showUser-form" ).dialog(
{
buttons: {
"OK": function()
{
$( this ).dialog( "close" );
},
cancel: function()
{
$( this ).dialog( "close" );
}
},
close: function() {}
});
例如,如何更改多语言网站的“取消”按钮的文本?
问候
雨果