Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 HTML 中,您可以通过向它们添加 class="notranslate" 来指示翻译服务不翻译某些 HTML 元素(source)。
有什么方法可以创建相反的行为吗?这样您就可以标记应该翻译的元素,并且只有那些会被翻译?
您可以使用 class notranslate="",并在 body 上指定。然后使用 class 对内部节点使用相同的方法translate。
notranslate=""
translate
<body class="notranslate"> <p class="translate">Will be translated</p> <p>Will not be translated</p> </body>