我有一个带有 id 的数据透视表,<TH>
我想知道如何使用这些 id 进行翻译。
使用这个
$('th').each(function(){
if ($(this).text() == '1234') { $(this).text('MyTranslationWithId1234'); }
});
我的对象是这样的:
{1234: 'text1234'},
{3232: 'text2332'},
{3278: 'text3278'}
我有大约 500 个 id <th>
,我想直接使用 JQuery 翻译它们