使用此代码时:
<script>
$(document).ready(function ()
{
$.getJSON("http://twitter.com/statuses/user_timeline/USERNAME.json?callback=?", function(data) {
if(data[0].text.length > 107)
$(".show_tweet").html(data[0].text.substring(0,107));
else
$(".show_tweet").html(data[0].text);
});
});
</script>
<div class='show_tweet'></div>
我需要添加什么代码才能自动在文本末尾添加 3 个点“...”?