Показать сообщение отдельно
  #2 (permalink)  
Старый 27.05.2012, 15:39
что-то знаю
Отправить личное сообщение для devote Посмотреть профиль Найти все сообщения от devote
 
Регистрация: 24.05.2009
Сообщений: 5,176

<td><input class="digits6" type="text" id="count_price_disc[1]" value="100" readonly> руб.</td>
<td><input class="digits6" type="text" id="count_price_disc[8]" value="555" readonly> руб.</td>
<td><input class="digits6" type="text" id="count_price_disc[22]" value="600" readonly> руб.</td>
<script type="text/javascript">
    var total_price = 0,
        els = document.getElementsByTagName( 'input' );

    for( var el, i = 0; el = els[ i++ ]; ) {
        if ( /^count_price_disc/.test( el.id ) ) {
            total_price += Number( el.value );
        }
    }

    alert( total_price );
</script>
__________________
хм Russians say завтра but завтра doesn't mean "tomorrow" it just means "not today."
HTML5 history API рассширение для браузеров не поддерживающих pushState, replaceState
QSA CSS3 Selector Engine
Ответить с цитированием