我一直在尝试使用 jquery 的 dotdotdot 方法来切断溢出的文本,但由于某种原因它不起作用。我希望该方法非常简单,但我不知道我做错了什么。
Javascript:
$(document).ready(function(){
$('.dotdotdot').dotdotdot({
ellipsis: '... ',
wrap: 'word',
after: null,
watch: true,
height: 40
});
});
html:
<div class="dotdotdot">
<?php echo $description; /*Current div height with text exceeds 40px*/ ?>
</div>
我找不到任何可以解释为什么这不起作用的东西。我的 jquery 是最新的,版本 1.8.3。