为Google页面翻译指定HTML DOM节点(与class = notranslate相反)

时间:2015-09-29 20:53:30

标签: javascript html html5 google-translate

我知道你可以告诉谷歌翻译不要使用class="notranslate"翻译某些部分,但是你能告诉谷歌只翻译特定部分而不翻译其他部分吗?

如果没有,还有其他选择吗?

2 个答案:

答案 0 :(得分:1)

使用属性translate="",并指定正文。然后在里面,指定要翻译的节点。例如:

<body translate="no">

    <p translate="yes">Will be translated</p>
    <p>Will not be translated</p>

</body>

答案 1 :(得分:0)

<body class="notranslate">
    <p class="translate">Will be translated</p>
    <p>Will not be translated</p>
</body>

为我工作