سؤال

I have a form with radiobuttons and textfields.

I can store number of checked radiobuttons into a variable like this:

var $answeredRadiobuttons = $questions.find("input:radio:checked").length;

How can I store number of textfields that has text within them?

var $answeredTextfields = $questions.find("input:text").length;
هل كانت مفيدة؟

المحلول

Try:

var $answeredTextfields = $questions.find("input:text").filter(function(){
    return this.value !== "";
}).length;

نصائح أخرى

use:

var $answeredTextfields = $("input").filter(function() {
  return $(this).val() != "";
}).length;

Working Demo

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top