使用jQuery翻译动态字符串

时间:2019-06-25 08:58:00

标签: jquery html string

我正在尝试在类span标签内找到一个字符串,并将该字符串替换为jQuery。

颜色是随机的和动态的,所以我需要用英语查找颜色并将其翻译成意大利文。

我有大约14种颜色可以翻译。

'Black'
'Blue'
'Gold'
'Orange'

收件人

'Nero'
'Blu'
'Oro'
'Arancia'

示例:

<div class="short-features">
  <!-- Heading Area -->
  <div class="heading-panel">
    <h3 class="main-title text-left">Details</h3>
  </div>
  <div class="col-sm-4 col-md-4 col-xs-12 no-padding">
  </div>
  <div class="col-sm-4 col-md-4 col-xs-12 no-padding">
    <span><strong>Color</strong> :</span> Black
  </div>
  <div class="col-sm-4 col-md-4 col-xs-12 no-padding"></div>
</div>

尝试:

$(".short-features .col-md-4")
    .has('span')
    .replaceWith("<span><strong>Color</strong> :</span>Nero</div>");

上面的代码有效,但是由于颜色是根据页面动态变化的,因此我需要修改jQuery以查找字符串Black并将其替换为Nero。

0 个答案:

没有答案