未捕获的TypeError:number不是使用length的函数

时间:2014-09-24 07:34:57

标签: jquery

    $(document).ready(function(){
console.log($(".name").text().length());
    });

号码不是功能?我选择了正确的课程..为什么?

2 个答案:

答案 0 :(得分:2)

.length不是函数,它是属性,所以不要使用()

console.log($(".name").text().length);

此外,.name是否存在?

答案 1 :(得分:2)

.lenght是一个Property,它返回jQuery object中元素的数量,所以只需从长度中删除()。

console.log($(".name").text().length);

Refer this jQuery documentation