html - How do i get the length of innerHTML (total characters) in JavaScript? - Stack Overflow

I'm trying to get the length of the characters that I attain from innerHTML and it's kind of

I'm trying to get the length of the characters that I attain from innerHTML and it's kind of e down to last resort, but can't seem to find a more efficient way as the data is inside a slider that I'm trying to use to get the lower value and higher value.

var lvalue=document.getElementById("lval").innerHTML;

then I'm spiting the string in the spaces:

var larr=lvalue.split(" ");

The innerHTML value is something like this "2413dsk 134dfa134".

And when i use larr[0].length, I get 1 when I need 7. Is there a solution?

I'm trying to get the length of the characters that I attain from innerHTML and it's kind of e down to last resort, but can't seem to find a more efficient way as the data is inside a slider that I'm trying to use to get the lower value and higher value.

var lvalue=document.getElementById("lval").innerHTML;

then I'm spiting the string in the spaces:

var larr=lvalue.split(" ");

The innerHTML value is something like this "2413dsk 134dfa134".

And when i use larr[0].length, I get 1 when I need 7. Is there a solution?

Share Improve this question edited Feb 1, 2012 at 7:53 bluish 27.4k28 gold badges125 silver badges184 bronze badges asked Feb 1, 2012 at 5:22 aburmanaburman 511 gold badge1 silver badge2 bronze badges 3
  • 1 larr[0] refers to the length of the first element of the splitted array.. – Tristian Commented Feb 1, 2012 at 5:24
  • Can you post some code? When I type exactly what you wrote here, the answer is 7 (starting with lvalue = "2413dsk 134dfa134"; instead of innerHTML). – djd Commented Feb 1, 2012 at 5:25
  • Slider as in HTML5 slider? You may be looking for document.getElementById('lval').value rather than .innerHTML? – lpd Commented Feb 1, 2012 at 5:26
Add a ment  | 

4 Answers 4

Reset to default 5

I think it would go something like this:

var lvalue = document.getElementById("lval").innerHTML;
var larr = lvalue.split(' ');
var len = 0;

// For each iterates over the index of arrays
for(var i in larr) { 
     len += larr[ i ].length // Acummulate the length of all the strings
}

Or alternatively you could count the spaces first and then substract it from the total length.

// Some people argue about extending the native objects
// but in this case I think this method is a natural fit.
String.prototype.count = function( character ) {
   var l = 0;
   // `this` refers to the string itself
   for(var c in this) n = this[ c ] === character ? ++n : n;
   return n;
}

An then use it like so:

var lvalue = document.getElementById("lval").innerHTML;

// Subtract total length minus the number of spaces
var len = lvalue.length - lvalue.count(' ');

This might be caused by a preceding or leading space.

Try trimming the extra spaces :

var lvalue=document.getElementById("lval").innerHTML.replace(/^\s+/gi,'').replace(/\s+$/gi,'');

var larr=lvalue.split(" ");

I didn't see any problem with your code. I run a test here: http://desdegdl./lval.html Probably, you have one or more spaces at the begining of lval's inner HTML.

If there is someone like me that doesn't want to use JQuery, here is a example in javascript (only)...

The files

The html file...

<!-- start body -->
<body>
  <!-- start section -->
    <section id="bar"></section>
  <!-- end section -->
</body>
<!-- end body -->

The javascript file...

/* start - wut element do ya wanna get? */
foo = document.getElementById('bar');
/* end - wut element do ya wanna get? */

/* start function */
function isEmpty(){
  if (foo.innerHTML.length === 0) {
      /* your code here */
  }
}
/* end function */

What I did

In the HTML

Quite simple, I just created a section and assigned an ID on it. This ID will be used to call her in our javascript.

In the JavaScript

In the var fooI I called the section whose I gave an ID. After it I created a function that "do something" if the length of a element is equal zero.

Considerations

It works, but if you have a space or a line break the code will not consider it as "empty"...

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743635296a4482046.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信