Is there anyway by which we can get the IE browser language
I tried navigator.lanuage , navigator.userLanguage etc...nothing works :( .
Is there anyway by which we can get the IE browser language
I tried navigator.lanuage , navigator.userLanguage etc...nothing works :( .
您可能正在寻找Accept-Language
Accept-Language 请求标头字段类似于 Accept,但限制了作为对请求的响应首选的自然语言集。
一个例子可能是这样的:
$.ajax({
url: "http://abcd.com",
dataType: 'jsonp',
success: function(headers) {
language = headers['Accept-Language'];
//..........
}
});