我有一组 PHP 语言文件,用于根据用户的语言选择向用户输出文本。我已成功将 PHP 变量传递给 javascript,并且它们可用,LANG
您可以在代码中看到它正在使用中。
这是我的问题......既然如下所示的代码完美运行,为什么我不能改变这一行......
'No': { 'class' : ''}}
至
LANG.no: { 'class' : ''}}
基本上我想知道为什么我可以LANG
在代码的其他地方使用,但不能在上面显示的行或等效的“是”行中使用。
这是工作代码:
$.confirm({
'title': LANG.return_to_exhibit_lobby,
'message': "<strong>"+LANG.return_to_exhibit_lobby_confirmation+"</strong>",
'buttons': {
'Yes': {
'class': 'special',
'action': function(){
window.location.href='logout.php';
}},
'No': { 'class' : ''}}
});