本文介绍了不要用jQuery.translator翻译textarea,怎么样?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用,非常正常的代码为:
I use jQuery.translate, very normal code as:
$('body').translate(...
现在我不想要 textarea
和输入:text
get翻译,所以我试过:
Now I do not want the textarea
and input:text
get translated, so I tried:
$('*:not(textarea,:text)').translate(..
$('body *:not(textarea, input:text)').translate(
无工作。
(这些答案来自另一个问题:
(these answers got from another question: jQuery, Select Body but exclude Textarea and Input:Text, how?
这里有人,有一个想法如何翻译正文但排除textarea和输入:text,谢谢。
Anyone here, has an idea how to translate the body but exclude textarea and input:text, thanks.
推荐答案
来自jQuery.translate wiki;首先将notranslate类添加到您不想要的元素翻译。
From the jQuery.translate wiki; first add the notranslate class to the elements you don't want to translate.
$('textarea').addClass('notranslate');
$('input:text').addClass('notranslate');
$('body').translate(...);
这篇关于不要用jQuery.translator翻译textarea,怎么样?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!