“Dokument JavaScript otrzymuje atrybut” Kod odpowiedzi

Jak uzyskać element według wartości atrybutu w JavaScript

document.querySelectorAll('[data-foo="value"]');
Gogo Dev

JS otrzymuj element atrybutem

//find first element with "someAttr" attribute
document.querySelector('[someAttr]')
Charming Caracal

JS otrzymuj element atrybutem

//find all elements with "someAttr" attribute
document.querySelectorAll('[someAttr]') 
Charming Caracal

Dokument JavaScript otrzymuje atrybut

priceChange(price, prefix, key, id) {
            if (prefix === '+' && parseInt(price) > 0) {
                this.price_print = (parseInt(this.originalPrice) + parseInt(price)).toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ");
            } else if (price !== null) {
                this.price_print = parseInt(this.originalPrice).toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ");
            }
            document.querySelectorAll('[id_attr="attr' + key + '"]').forEach(function (el) {
                el.classList.remove('product__storage__item-active');
            });
            document.getElementById('value_option' + id).classList.add('product__storage__item-active');
        }
Shadow

Odpowiedzi podobne do “Dokument JavaScript otrzymuje atrybut”

Pytania podobne do “Dokument JavaScript otrzymuje atrybut”

Więcej pokrewnych odpowiedzi na “Dokument JavaScript otrzymuje atrybut” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu