【发布时间】:2021-12-22 13:44:28
【问题描述】:
我有一个加载英文的网站,我自己手动将每个段落翻译成法文。通过一个简单的功能,当您单击 translate_fr() onclick 时,所有段落都被它们的 id 抓取并切换到存储在我的 .js 文件中的法语段落。当您单击 translate_en() 时,它会恢复为英语。基本上,当用户单击 EN 或 FR 时,我希望将该决定延续到其他所有页面,我需要以某种方式存储该函数输出并在他们进入另一个页面时让它自动运行。如果他们是第一次进入主页并翻译成法语,则其他页面也应该是法语。
我只留下了一个段落的例子,但如果您需要更好地理解这里是域 lionkuts.ca 上的网站
function translate_en(){
document.getElementById("intro").innerHTML = `Here at Lion Kuts we are a cat only establishment that offers a full range of services from complete grooming, bathing to boarding. You and your pet will be thrilled to know that only professional, natural and biodegradeable products are used, any sensitivities or allergies will not be a problem.`;
}
function translate_fr(){
document.getElementById("intro").innerHTML = `Chez Coupe Lion, nous ne sommes qu'un chat établissement offrant une gamme complète de services du toilettage complet, de la baignade à l'embarquement.Vous et votre animal sera ravi de savoir que seul un professionnel, des produits naturels et biodégradables sont utilisés, tout les sensibilités ou les allergies ne seront pas un problème.`;
}
<div class="wrapper3">
<button class="translate" id="click1" type="button"onclick="translate_en()">EN
</button>
<button class="translate" id="click2"
type="button" onclick="translate_fr()">FR
</button>
</div>
<p id="intro">
Here at Lion Kuts we are a cat only
establishment that offers a full range of services
from complete grooming, bathing to boarding. You and
your pet will be thrilled to know that only professional,
natural and biodegradeable products are used, any
sensitivities or allergies will not be a problem.
</p>
所有页面都有这样设置的两个功能,我只需要这些功能运行是否决定在主页上单击fr或en。如果他们单击 FR,则需要存储该决定,并且当下一页运行时 translate_fr 函数会自动运行并交换所有段落。
【问题讨论】:
标签: javascript html cookies local-storage