编码/解码翻译的句子

发布于 2024-09-24 15:45:03 字数 425 浏览 1 评论 0原文

我的 HTML 中有以下脚本:

jQuery.sundayMorning(text, { destination: 'en' }, function(response) {
    var uri = response.translation;
    var text = decodeURIComponent(uri);
    jQuery(".showText").val(text);
});

西班牙语输入示例:la casa de leo el Battleiente

这翻译成英语为:leo's housefighter

我想将其显示为:leo's housefighter

有人知道解决这个问题的方法吗?

I've the following script in my HTML:

jQuery.sundayMorning(text, { destination: 'en' }, function(response) {
    var uri = response.translation;
    var text = decodeURIComponent(uri);
    jQuery(".showText").val(text);
});

Example input in Spanish: la casa de leo el combatiente.

This translates into English as: leo's house fighter.

I want to show this as: leo's house fighter.

Anyone knows a way to solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风筝有风,海豚有海 2024-10-01 15:45:03

通常,您可以使用 element.html() 函数来实现此目的。但由于您使用的是 val(),您将尝试在输入元素而不是某个 div 中显示它。输入元素不支持 html() 函数。由于 jQuery 中没有直接可用的 API 来解码 HTML/XML 实体,因此您需要创建一个 div 元素,使用其 html() ,然后获取结果为 text()< /代码>。

var decodedText = jQuery("<div/>").html(encodedText).text();

然后您可以在输入元素中显示它。

jQuery(".showText").val(decodedText);

Normally, you would use the element.html() function for this. But since you're using val(), you'll be trying to show it in an input element instead of some div. Input elements doesn't support the html() function. Since there's no direct API available in jQuery to decode HTML/XML entities, you'd like to create a div element, use its html() and then get the result as text().

var decodedText = jQuery("<div/>").html(encodedText).text();

Then you can show this in the input element.

jQuery(".showText").val(decodedText);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文