Jump to content
  • 0

Помогите с перебором атрибутов


botyaslonim
 Share

Question

Есть несколько инпутов с одинаковым классом и атрибутом value:

<input class="Klass"  value="..." />

Пользователь в эти инпуты вводит разные значения. Мне нужно перебрать все эти инпуты, собрать значение .attr('value') и их сложить.

Чтобы было так:

<input class="Klass"  value="1" />
<input class="Klass" value="3" />
<input class="Klass" value="5" />

var a = 9

Как сделать на jQuery без того, чтобы каждому инпуту придавать id?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

;) Работает, только производит конкатенацию значений

Точно, это же строки.

Ну проще всего


total = 0;
$("input.Klass").each(function() {total += this.value - 0})

ну или более наглядно и традиционно:


total = 0;
$("input.Klass").each(function() {total += parseInt(this.value, 10)})

Link to comment
Share on other sites

  • 0

Не значит, так лучше не делать, на самом деле, если случай не слишком уж простой и вы не уверены на 100% что в этом случае так делать можно.

Тут мы пользуемся тем, что при вычитании оба операнда должны быть числами, и JS по возможности пытается привести их к числам. Это не аналог parseInt, но более подробно рассказать не смогу, потому что автоматическое приведение типов происходит по сложной схеме, которую я сам до конца не знаю и не понимаю.

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

×
×
  • 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