从服务器或客户端检查或更改键盘输入语言
我们如何从服务器或客户端检查或更改键盘输入语言?
how can we check or change keyboard typing language from server or client side ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们如何从服务器或客户端检查或更改键盘输入语言?
how can we check or change keyboard typing language from server or client side ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您无法从浏览器(或服务器)控制它。
您真的希望任何随机网站都能够在无需您干预的情况下更改您的打字语言吗?
You can't control this from the browser (or server).
Would you really want any random website to be able to change your typing language without your intervention?
要检测语言,您可以使用此 Goggle API:
http://code.google.com/apis/language/translate/v1 /using_rest_langdetect.html
您必须从服务器端代码发送请求,因为没有公开 JSONP,他们没有提供 ASP.NET 示例,但从 PHP 转换为 C# 应该不难。
To detect the language you can use this Goggle API:
http://code.google.com/apis/language/translate/v1/using_rest_langdetect.html
You will have to send the request from the Server side code as there's no JSONP exposed, they didn't provide ASP.NET sample but translating from PHP to C# should not be difficult.
不完全是你想要的,但是...
你可以通过在客户端 javascript 中拦截用户的按键,然后在 javascript 中向文本框添加字符来伪造它。
Not exactly what you want but...
You could fake it by intercepting the keypress of your user in client-side javascript and then adding characters to the textbox in javascript.