const input = document.querySelector('#textLink');
const buttonSelector = '.link';
document.addEventListener('click', e => {
const button = e.target.closest(buttonSelector);
if (button) {
input.value = button.innerText;
}
});
document.querySelectorAll(buttonSelector).forEach(function(n) {
n.addEventListener('click', this);
}, e => input.value = e.currentTarget.textContent);
Не вижу явного удаления из дом дерева.
.js-select-tabs-head
, неужели этого не видно? Или вы думаете, что там другой элемент, копия? Это не так - можете получить элемент до вызова html, после, сравнить их, увидите, что это один и тот же элемент.$head.html($text.filter('.is-active').clone())
. this.api = this.api.replace(word, 'BOOM')
this.api = this.api.replace(RegExp(`\\b${word}[a-z]*\\b`, 'ig'), 'BOOM')
this
из всех методов, которые могут быть не последними в цепочке вызовов:function calc(val) {
const self = Object.create(calc.prototype);
self.val = val;
return self;
}
calc.prototype = {
plus(val) {
this.val += val;
return this;
},
minus(val) {
this.val -= val;
return this;
},
valueOf() {
return this.val;
},
};
+calc(0).plus(1); // 1
+calc(1).plus(1).plus(1); // 3
+calc(1).plus(2).plus(3).plus(4).minus(5); // 5
calc(3).plus(7).minus(2) * 3; // 24
99 + calc(1); // 100
const newArr = arr.slice(-5);
arr.splice(0, arr.length - 5);
const kebab = str => str.replace(/\b([A-Z][a-z]*)+\b/g, n => n.replace(/([A-Z])/g, '-$1').replace(/^-/, '').toLowerCase());
console.log(kebab('KebabCase noKebabCase No_Kebab_Case And FuckDonaldTrump!!')); // "kebab-case noKebabCase No_Kebab_Case and fuck-donald-trump!!"
for (const n of words) {
string = string.replace(RegExp(`\\b${n}\\b`, 'gi'), m => `<a href="#">${m}</a>`);
}
const newString = words.reduce((acc, n) => {
return acc.replace(RegExp(`\\b${n}\\b`, 'gi'), '<a href="#">$&</a>');
}, string);
audio.setVolume(0.5);
. Посмотрел поддержку forEach: она отличная.
forEach
- принадлежащий Array.prototype
. У вас ошибка возникает из-за отсутствия NodeList.prototype.forEach
.forEach
массива:Array.prototype.forEach.call(items, function(n) {
// ...
});
for (var i = 0; i < items.length; i++) {
// ...
}
for (var n of items) {
// ...
}
const el = currentTarget.querySelector('селектор элемента');
if (el) {
el.remove();
}
const tableEl = document.querySelector('селектор_таблицы');
const colIndex = индекс_столбца;
const colData = Array.from(
tableEl.rows,
({ cells: { [colIndex]: n } }) => n && n.textContent
);
// или
const colData = Array.prototype.map.call(
tableEl.querySelectorAll(`tr > :nth-child(${colIndex + 1})`),
n => n.innerText
);
// или
const colData = [];
for (const n of table.querySelectorAll('tr')) {
colData.push((n.children[colIndex] || {}).innerHTML);
}
const parentSelector = '.parent';
const className = 'custom';
document.querySelectorAll(`${parentSelector} > .${className}`).forEach(n => {
n.classList.remove(className);
});
// или
for (const n of document.querySelector(parentSelector).children) {
n.classList.remove(className);
}
.colors
вызывайте функцию пересчёта:$('.colors').on('click', '.color', function() {
$(this).toggleClass('checked');
calculate();
});
.colors .checked
и суммирование их data-price
:total += $('.colors .checked', this)
.get()
.reduce((acc, n) => acc + +n.dataset.price, 0);
const values = Array.from(
document.querySelectorAll('.aside input[type="checkbox"]:checked'),
n => n.value
);
Почему console.log('\n' == separator.value);
возвращает false?
\n
- это перенос строки. Экранируйте слэш - '\\n' == separator.value
. const steps = Object.entries(answers).reduce((acc, [ key, val ]) => {
const question = questions.find(n => n.key === key);
const step = acc[val.step] = acc[val.step] || [];
step.push({
step: val.step,
question: { ...question.question },
answer: question.answer.values instanceof Object
? question.answer.values[val.answer].en
: val.answer,
});
return acc;
}, {});
const arr = JSON.parse(localStorage.getItem('arr')) || [];
arr.push(1, 2, 3);
localStorage.setItem('arr', JSON.stringify(arr));