我有一個div中包含可變數量的文本。該div有一個設定的高度,如果文本超過了這個高度,我想創建一個「Read More」鏈接。使用jquery替換第n個字符後的所有字符
我能算文本witing的div的長度,例如:
$(".longdesc").each(function() {
var count = $(this).text().length
console.log(count);
if(count > 100){
//Replace additional characters with " ...Read More"
};
});
但我不確定如何與字符100替換後的所有字符「...閱讀更多」 。
有人會知道如何去做這件事嗎?