jquery每个函数都不能使用

时间:2014-05-27 13:46:34

标签: jquery html

问题:

我需要使用jquery过滤段落标记中的每个字母,但它不起作用。

HTML

  <p id="check">This is kamesh</p>

的jQuery

var text = $(this).text(),
    jQuerytext = $(this) ,
    funtext ='' ,
    colorToggle = true;                                         
    $.each( text, function( key , value ){
      console.log(value);   //Value is empty                    
    });

我知道问题在于访问变量&#39; 文字&#39;但我无法解决它.. 提前致谢

1 个答案:

答案 0 :(得分:3)

尝试将文本拆分为空字符,然后迭代结果数组

$.each( text.split(''), function( key , value ){
   alert(value);                 
});

DEMO