Jump to content
  • 0

Общий подсчёт из нескольких полей


DaLamaro
 Share

Question

Здравствуйтеwrite.gif . Есть 4 таблицы.

В каждой по нескольку десятков вычисляемых input-полей для ввода.

В каждой таблице все поля суммируются и результат выводится в <span></span>.

Таблицы никак не связаны между собой. В общем хочу сделать так, чтобы был ещё один <span></span>, в который суммируются все 4 <span>'а соответствующих четырёх таблиц. Сам никак не дотумкаю.help.gif Спасибо заранее. laugh.gif

HTML-КОД:



<div id="calculate">

<form method="post">
<table id="tableSelect" class="zebratable" width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>Наименование работ</th>
<th>Ед.изм.</th>
<th>Колличество</th>
<th>Цена за единицу</th>
<th>Сумма</th>
</tr>

<tr>
<td>Пробивка штробы по кирпичу</td>
<td class="vertical">м</td>
<td>
<input id="pos_1" type="text" name="people" value="0">
</td>
<td class="vertical" id="pos_1_price">100</td>
<td id="pos_1_count">0</td>
</tr>

<tr>
<td>Пробивка штробы по бетону</td>
<td class="vertical">м</td>
<td>
<input id="pos_2" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos_2_price">150</td>
<td id="pos_2_count">0</td>
</tr>

<tr>
<td>Прокладка провода</td>
<td class="vertical">м</td>
<td>
<input id="pos_3" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos_3_price">35</td>
<td id="pos_3_count">0</td>
</tr>

</table>
<div id="count_price"><p>Итого: <span></span></p></div>

</form>
</div>


<div id="calculate2">

<form method="post">
<table id="tableSelect2" class="zebratable" width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>Наименование работ</th>
<th>Ед.изм.</th>
<th>Колличество</th>
<th>Цена за единицу</th>
<th>Сумма</th>
</tr>

<tr>
<td>Демонтаж радиаторов отопления</td>
<td class="vertical">шт</td>
<td>
<input id="pos2_1" type="text" name="people" value="0">
</td>
<td class="vertical" id="pos2_1_price">150</td>
<td id="pos2_1_count">0</td>
</tr>

<tr>
<td>Демонтаж труб отопления,водопровода,канализации</td>
<td class="vertical">мп</td>
<td>
<input id="pos2_2" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos2_2_price">60</td>
<td id="pos2_2_count">0</td>
</tr>

<tr>
<td>Демонтаж сантехнических приборов</td>
<td class="vertical">шт</td>
<td>
<input id="pos2_3" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos2_3_price">250</td>
<td id="pos2_3_count">0</td>
</tr>

</table>
<div id="count_price2"><p>Итого: <span></span></p></div>
</form>

</div>


<div id="calculate3">

<form method="post">
<table id="tableSelect3" class="zebratable" width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>Наименование работ</th>
<th>Ед.изм.</th>
<th>Колличество</th>
<th>Цена за единицу</th>
<th>Сумма</th>
</tr>

<tr>
<td>Удаление старых обоев</td>
<td class="vertical">м<sup>2</sup></td>
<td>
<input id="pos3_1" type="text" name="people" value="0">
</td>
<td class="vertical" id="pos3_1_price">50</td>
<td id="pos3_1_count">0</td>
</tr>

<tr>
<td>Очистка потолка от шпатлевки или краски</td>
<td class="vertical">м<sup>2</sup></td>
<td>
<input id="pos3_2" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos3_2_price">100</td>
<td id="pos3_2_count">0</td>
</tr>

<tr>
<td>Грунтование потолка</td>
<td class="vertical">м<sup>2</sup></td>
<td>
<input id="pos3_3" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos3_3_price">20</td>
<td id="pos3_3_count">0</td>
</tr>

</table>
<div id="count_price3"><p>Итого: <span></span></p></div>
</form>

</div>


<div id="calculate4">

<form method="post">
<table id="tableSelect4" class="zebratable" width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>Наименование работ</th>
<th>Ед.изм.</th>
<th>Колличество</th>
<th>Цена за единицу</th>
<th>Сумма</th>
</tr>

<tr>
<td>Монтаж радиатора</td>
<td class="vertical">шт</td>
<td>
<input id="pos4_1" type="text" name="people" value="0">
</td>
<td class="vertical" id="pos4_1_price">2000</td>
<td id="pos4_1_count">0</td>
</tr>

<tr>
<td>Монтаж коллекторного шкафа</td>
<td class="vertical">шт</td>
<td>
<input id="pos4_2" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos4_2_price">1500</td>
<td id="pos4_2_count">0</td>
</tr>

<tr>
<td>Монтаж межэтажных стояков</td>
<td class="vertical">мп</td>
<td>
<input id="pos4_3" type="text" name="people_t" value="0">
</td>
<td class="vertical" id="pos4_3_price">200</td>
<td id="pos4_3_count">0</td>
</tr>

</table>
<div id="count_price4"><p>Итого: <span></span></p></div>
</form>

</div>


Javascript-КОД:


$(document).ready(function() {

//Таблица1
$("#tableSelect").change(function() {
var totalSum = 0;

$("input[id^='pos'], select[id^='pos']").each(function() {
var idElement = "#"+$(this).attr("id"), //Получаем id элемента
priceField = parseInt($(idElement+"_price").text()), //Стоимость позиции
countField = parseInt($(this).val()); //значение элемента

$(idElement+"_count").text(priceField * countField); //Выводим сумму по позиции
totalSum += priceField * countField;
});
$("#count_price span").text(totalSum);
});


//Таблица2
$("#tableSelect2").change(function() {
var totalSum = 0;

$("input[id^='pos2'], select[id^='pos2']").each(function() {
var idElement = "#"+$(this).attr("id"),
priceField = parseInt($(idElement+"_price").text()),
countField = parseInt($(this).val());

$(idElement+"_count").text(priceField * countField);
totalSum += priceField * countField;
});
$("#count_price2 span").text(totalSum);
});


//Таблица3
$("#tableSelect3").change(function() {
var totalSum = 0;

$("input[id^='pos3'], select[id^='pos3']").each(function() {
var idElement = "#"+$(this).attr("id"),
priceField = parseInt($(idElement+"_price").text()),
countField = parseInt($(this).val());

$(idElement+"_count").text(priceField * countField);
totalSum += priceField * countField;
});
$("#count_price3 span").text(totalSum);
});


//Таблица4
$("#tableSelect4").change(function() {
var totalSum = 0;

$("input[id^='pos4'], select[id^='pos4']").each(function() {
var idElement = "#"+$(this).attr("id"),
priceField = parseInt($(idElement+"_price").text()),
countField = parseInt($(this).val());

$(idElement+"_count").text(priceField * countField);
totalSum += priceField * countField;
});
$("#count_price4 span").text(totalSum);
});


});

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

каждому span задаете id предположим span1,span2,span3,span4

потом забираете значения из каждого span как то так для примера:


var a = 0;
for(var i = 1;i <= 4 ; i++){
a += parseInt($("#span"+i).text(), 10);
}
$("#out").text(a);

Edited by wwt
Link to comment
Share on other sites

  • 0

каждому span задаете id предположим span1,span2,span3,span4

потом забираете значения из каждого span как то так для примера:


var a = 0;
for(var i = 1;i <= 4 ; i++){
a += parseInt($("#span"+i).text(), 10);
}
$("#out").text(a);

Спасибо за Ваш отклик и немаловажную помощь)

А можно сделать так, что бы не задавать id всем предыдущим span'ам, т.е. оставить предыдущий скрипт без изменений. У меня, в принципе, меняется id div'ов "count_price" соответственно для всех таблиц, "#count_price", "#count_price2", "#count_price3", "#count_price4", а span'ы, в каждом таком div'е, без id. Надеюсь Вы поняли моё замудрённое описание) Заранее благодарен)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Similar Content

    • By Seadjus
      Добрый день!
      Огромная просьба камнями не кидаться!
      Начал изучать JS , пока нет особых продвижений в изучении.
      помогите оптимизировать игру в пары. по условиям задания необходимо реализовать игру в пары с таймером, выбором количества карт .
      Ниже
      https://codepen.io/Seadjus/pen/VwVedaP
    • By ilya1203
      Прошу помочь с заданием:
      Написать файл скрипта, который генерирует три числа, соответствующие значениям высоты, длины и ширины комнаты. Отобразить в консоли:
      a.Площадь стен комнаты
      b.Объём комнаты
      c.*Объём комнаты за вычетом случайно сгенерированного количества чисел, которые определяет объёмы случайно зашедших в комнату людей.
      (в итоге запустит скрипт последством консоли)
      (заранее огромное спасибо)
    • By Kaido
      Использую готовый плагин для модальных окон(от MaxGraph). Проблема в том, что когда у меня открыто два модальных окна, для примера Форма + Политика конфендициальности, и мне нужно закрыть политику вместе с ней закрывается и другое модальное окно. В JS я не сильно разбираюсь(собственно из за этого и использую готовый плагин), можете помочь кто работал с этим плагином? Я примерно понимаю как он работает, но реализовать чтобы закрывалось только одно не получается.
       
        <div class="content"> <button class="modal-btn" data-path="first" data-animation="fadeInUp" data-speed="1500">Открыть окно 1</button> </div> <div class="modal"> <div class="modal__wrapp" data-target="first"> <div class="modal__content"> <button class="modal__close">Закрыть</button> модальное окно <button data-path="policy">Политика</button> </div> </div> <div class="modal__wrapp" data-target="policy"> <div class="modal__content"> <button class="modal__close">Закрыть</button> политика </div> </div> </div> .modal { --transition-time: 0.3s; position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1000; cursor: pointer; overflow-y: auto; overflow-x: hidden; text-align: center; opacity: 0; visibility: hidden; transition: opacity var(--transition-time), visibility var(--transition-time); } .modal__wrapp { display: none; cursor: default; width: fit-content; height: fit-content; } .modal__content{ position: absolute; left: 500px; width: 500px; height: 500px; display: flex; color: white; flex-direction: column; text-align: left; background-color: #000; } .modal__content button{ width: 200px; height: 50px; margin: 50px 0; } .modal.is-open { opacity: 1; visibility: visible; transition: opacity var(--transition-time), visibility var(--transition-time); } .modal__wrapp.modal-open { display: flex; } .disable-scroll { position: relative; overflow: hidden; height: 100vh; position: fixed; left: 0; top: 0; width: 100%; } .fade { opacity: 0; transition: opacity var(--transition-time); } .fade.animate-open { opacity: 1; transition: opacity var(--transition-time); } .fadeInUp { opacity: 0; transform: translateY(vw(-100)); transition: opacity var(--transition-time), transform var(--transition-time); } .fadeInUp.animate-open { opacity: 1; transform: translateY(0); transition: opacity var(--transition-time), transform var(--transition-time); } .modal__wrapp[data-target="policy"] .modal__content{ left: 1050px; background-color: #000; opacity: .5; } class Modal { constructor(options) { let defaultOptions = { isOpen: () => {}, isClose: () => {}, } this.options = Object.assign(defaultOptions, options); this.modal = document.querySelector('.modal'); this.speed = false; this.animation = false; this.isOpen = false; this.modalContainer = false; this.previousActiveElement = false; this.fixBlocks = document.querySelectorAll('.fix-block'); this.focusElements = [ 'a[href]', 'input', 'button', 'select', 'textarea', '[tabindex]' ]; this.events(); } events() { if (this.modal) { document.addEventListener('click', function(e){ const clickedElement = e.target.closest('[data-path]'); if (clickedElement) { let target = clickedElement.dataset.path; let animation = clickedElement.dataset.animation; if (clickedElement.classList.contains('modal-close')) { this.close(); } let speed = clickedElement.dataset.speed; this.animation = animation ? animation : 'fade'; this.speed = speed ? parseInt(speed) : 300; this.modalContainer = document.querySelector(`[data-target="${target}"]`); this.open(); return; } if (e.target.closest('.modal__close')) { this.close(); return; } }.bind(this)); window.addEventListener('keydown', function(e) { if (e.keyCode == 27) { if (this.isOpen) { this.close(); } } if (e.keyCode == 9 && this.isOpen) { this.focusCatch(e); return; } }.bind(this)); this.modal.addEventListener('click', function(e) { if (!e.target.classList.contains('modal__wrapp') && !e.target.closest('.modal__wrapp') && this.isOpen) { this.close(); } }.bind(this)); } } open() { this.previousActiveElement = document.activeElement; this.modal.style.setProperty('--transition-time', `${this.speed / 1000}s`); this.modal.classList.add('is-open'); this.disableScroll(); this.modalContainer.classList.add('modal-open'); this.modalContainer.classList.add(this.animation); setTimeout(() => { this.options.isOpen(this); this.modalContainer.classList.add('animate-open'); this.isOpen = true; this.focusTrap(); }, this.speed); } close() { if (this.modalContainer) { this.modalContainer.classList.remove('animate-open'); this.modalContainer.classList.remove(this.animation); this.modal.classList.remove('is-open'); this.modalContainer.classList.remove('modal-open'); this.enableScroll(); this.options.isClose(this); this.isOpen = false; this.focusTrap(); } } focusCatch(e) { const focusable = this.modalContainer.querySelectorAll(this.focusElements); const focusArray = Array.prototype.slice.call(focusable); const focusedIndex = focusArray.indexOf(document.activeElement); if (e.shiftKey && focusedIndex === 0) { focusArray[focusArray.length - 1].focus(); e.preventDefault(); } if (!e.shiftKey && focusedIndex === focusArray.length - 1) { focusArray[0].focus(); e.preventDefault(); } } focusTrap() { const focusable = this.modalContainer.querySelectorAll(this.focusElements); if (this.isOpen) { focusable[0].focus(); } else { this.previousActiveElement.focus(); } } disableScroll() { let pagePosition = window.scrollY; this.lockPadding(); document.body.classList.add('disable-scroll'); document.body.dataset.position = pagePosition; document.body.style.top = -pagePosition + 'px'; } enableScroll() { let pagePosition = parseInt(document.body.dataset.position, 10); this.unlockPadding(); document.body.style.top = 'auto'; document.body.classList.remove('disable-scroll'); window.scroll({ top: pagePosition, left: 0 }); document.body.removeAttribute('data-position'); } lockPadding() { let paddingOffset = window.innerWidth - document.body.offsetWidth + 'px'; this.fixBlocks.forEach((el) => { el.style.paddingRight = paddingOffset; }); document.body.style.paddingRight = paddingOffset; } unlockPadding() { this.fixBlocks.forEach((el) => { el.style.paddingRight = '0px'; }); document.body.style.paddingRight = '0px'; } } const modal = new Modal({ isOpen: (modal) => { console.log(modal); console.log('opened'); }, isClose: () => { console.log('closed'); }, });  
    • By ilyamio
      Здравствуйте. Имеется рабочий скрипт конвертера валют. https://ilyamio.github.io/currencyconverter/
      Мне необходимо изменить источник загрузки курсов на ЦБ РФ вот по этой ссылке: https://www.cbr.ru/scripts/XML_daily.asp
      А также мне необходимо установить ограничение на количество обращений к сайту ЦБ РФ - 1 раз в сутки. При частом обращении, могут заблокировать.
      Вот в этом js файле находятся настройки конвертера:
      const from_currencyEl = document.getElementById('from_currency'); const from_ammountEl = document.getElementById('from_ammount'); const to_currencyEl = document.getElementById('to_currency'); const to_ammountEl = document.getElementById('to_ammount'); const rateEl = document.getElementById('rate'); const exchange = document.getElementById('exchange'); from_currencyEl.addEventListener('change', calculate); from_ammountEl.addEventListener('input', calculate); to_currencyEl.addEventListener('change', calculate); to_ammountEl.addEventListener('input', calculate); exchange.addEventListener('click', () => { const temp = from_currencyEl.value; from_currencyEl.value = to_currencyEl.value; to_currencyEl.value = temp; calculate(); }); function calculate() { const from_currency = from_currencyEl.value; const to_currency = to_currencyEl.value; fetch(`https://api.exchangerate-api.com/v4/latest/${from_currency}`) .then(res => res.json()) .then(res => { const rate = res.rates[to_currency]; rateEl.innerText = `1 ${from_currency} = ${rate} ${to_currency}` to_ammountEl.value = (from_ammountEl.value * rate).toFixed(2); }) } calculate(); Как мне изменить настройки в этом файле чтобы курсы брались с https://www.cbr.ru/scripts/XML_daily.asp и включить ограничение на количество обращений по ссылке cbr.ru - 1 раз в сутки?
      Заранее спасибо всем, кто хотел помочь с решением этой задачи.
    • By vasyl_runner
      $(function () { var mixer = mixitup('.directions__list'); $('.directions__filter-btn').on('click', function () { $('.directions__filter-btn').removeClass('directions__filter-btn--active') $(this).addClass('directions__filter-btn--active') }) })
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy