我有以下问题。为了翻译一个网站,我使用了jQuery Localize插件。这工作正常。However, I want a CSS styled selectbox with flags and languages, and when a different option is selected the call to $("[data-localize]").localize("example", { language: $(this).attr('value')
should be made to translate the page.
我目前正在使用这段代码,它适用于普通的非样式选择框。
<script type="text/javascript">
$(function() {
$('#polyglot-language-options').change(function() {
if ($(this).attr('value') == "en") {
$("[data-localize]").localize("example", {
language: $(this).attr('value')
});
}
else if ($(this).attr('value') == "nl") {
location.reload();
}
});
});
</script>
但我想对其进行样式设置,所以我尝试集成“polyglot”语言切换器。但是,当前代码不起作用。
如何整合 $("[data.localize]").localize(); 这段代码中的函数:
$('#polyglotLanguageSwitcher').polyglotLanguageSwitcher({
effect: 'fade'
});