エラーが発生する同じコードを使用して、いくつかのhtml要素内でループする必要があります
jquery Uncaught TypeError: Object # has no method 'height'
ここで何が問題なのですか?
clamp: function() {
var elms = $('#wrapper .content ul li .title');
elms.each(function(i) {
debugger
var elm = this;
var h = elm.height();
var eO = elm.outerHeight();
if (eO > h) {
elm.text(function(index, text) {
return text.replace(/\W*\s(\S)*$/, '...');
});
}
})