我会保持这个简单,因为它很简单。
所以我有一个页面用于 tesmonials,我设法为每个页面添加了一个阅读更多功能,我想保持页面干净整洁。
阅读更多功能有效,但这是我的问题。因为每次我点击 1 阅读更多时我都有大约 10 个推荐信,所以整个 10 个帖子同时展开.. 有什么帮助吗?
继承人的HTML代码
<p>something something something first</p>
<div style="width: 500px; padding: 10px;">
<br/><br/><a href="#" class="readMore">Read More</a>? <br/><br/>
<!-- BEGIN: Hidden Content. -->
<div class="content" style="display: none ; width:500px;">things things and stuff and more stuff and things </p></div>
<!-- END: Hidden Content. -->
这是脚本
<script type="text/javascript" src="./jquery-1.6.3.js"></script>
<script type="text/javascript">
// Cache a reference to the hidden content.
var hiddenContent = $("div.content");
// Bind to the Read More link to toggle the
$("a.readMore").click(
function(event) {
// Cancel the default event (this isn't a real link).
event.preventDefault();
// Check to see if the content is visible.
if (hiddenContent.is(":visible")) {
// Hide it slowly.
hiddenContent.slideUp(3000);
} else {
// Show it slowly.
hiddenContent.slideDown(3000);
}
});
</script>
任何帮助都会很棒.. 再次是它(它有效)的问题,但是当点击一个 - 阅读更多 - 时,所有其他 10 个帖子也会展开。