我已經創建了一個通訊彈出功能,允許用戶註冊發送的通訊,如果用戶嘗試點擊提交而不先輸入電子郵件地址,會有一條警告消息,但是我需要根據國家,他們都在,如果他們是在意大利網站改變此消息/警報,例如,我就需要這個消息是在意大利,我當前的代碼是:根據語言更改警報消息?
this.signup = function() {
if ($('#emailsignup').val() == '') {
alert('Bitte geben Sie eine gültige E-Mail Adresse ein.');
} else {
$.ajax({
dataType: 'jsonp',
data: {
e: $('#emailsignup').val(),
s: 'leftsideform',
c: that.lang
},
jsonp: 'jsonp_callback',
url: 'http://karina.com/######',
success: function (response) {
if (response.success === true) {
$('#emailsignup').val('');
}
if (response.callback.data != '') {
alert(response.callback.data);
}
}
});
}
}