以下是我的JQuery功能。我想將CSS樣式應用於作爲該函數一部分的「Read More」和「Read Less」文本。我們如何做到這一點?如何使用CSS3設計「閱讀更多」
$(document).ready(function() {
$('.YourName').jTruncate({
length: 25,
minTrail: 0,
moreText: "Read More",
lessText: "Read Less",
ellipsisText: "...",
});
});
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://tester3.yolasite.com/resources/javascript/jtruncate.js"></script>
<p class="YourName">Hello, Text will truncate after 25 characters and a "Read More" link will be appended to it. Here is some more text. Here is some more text. Here is some more text. Here is some more text. Here is some more text. Here is some more more text. Here is some more text. Here is some more text. This is the end.</p>
有沒有辦法風格JS字符串。您應該將CSS應用於在頁面上顯示這些字符串的元素。你正在使用這個[jTruncate](http://www.jeremymartin.name/projects.php?project=jTruncate)? – Teemu
你能舉個例子嗎?或者是否有其他途徑在我的HTML文檔中包含「Read More」,以便我可以使用CSS3對其進行設計。 – Vyas
請向我們解釋'jTruncate()'是什麼,或者它應該做什麼。也請使片段工作:在**運行**我得到「未捕獲的SyntaxError:意外的令牌<」。你應該把它交給我們,沒有錯誤。 –