Добавить цену без $ к атрибуту содержимого схемы цены - PullRequest
0 голосов
/ 11 апреля 2019

Я пытаюсь добавить 7.07 (без текущего символа) из: <p class="regular-price">$7.07</p> к атрибуту содержимого здесь: <meta itemprop="price" content="7.07 Here" />.

1 Ответ

0 голосов
/ 29 апреля 2019

Следующий код должен достичь того, что вы хотите сделать с ванильным JavaScript:

(function () {
  // Get references to the two elements
  var metaElement = document.querySelector('meta');
  var priceElement = document.querySelector('.regular-price');

  // Get the value of the `regular-price` element and remove the $ sign
  var priceValueModified = priceElement.innerHTML.replace('$', '');

  // Set the modified value as the attribute of the meta element
  metaElement.setAttribute('content', priceValueModified);
})();
<meta itemprop="price" content="" />
<p class="regular-price">$7.07</p>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...