问题:
我需要使用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;但我无法解决它.. 提前致谢
答案 0 :(得分:3)