我已将i18next js插件导入到我的主干应用程序中。插件已配置完毕,可以使用了。
// initialize i18next plugin
i18next.init(
{
lng: language,
debug: true,
resources: data,
},
function(err, t) {},
);
当我将data-i18n属性添加到html元素时,我无法翻译其文本:
<p id="test" data-i18n="myKey"> label </p>
和js:
$('p#test').i18n()
i18n()函数未定义