显示剩余内容

时间:2014-03-26 12:33:57

标签: jquery html

我已隐藏此示例中的第二段,并想点击“阅读更多...”进行查看。尝试了slideToggle和.show,但似乎都没有生效,我的代码中有任何明显的错误?

http://jsfiddle.net/

<div class="cat-description">
    <a href="#"><img src="images/cache/Features/NEW-SITE-FEATURE.390.jpg?1076241667" alt="" title="" /></a>
    <h1>test title</h1>
    <p>paragraphy 1</p>
        <div class="showcontent">
        <a class="showcontent" href="#" id="show">read more ...</a></div>
        <div id="showcontent" style="display: none;">
<p>paragraph 2</p>
</div>

</div>

的jQuery

$(function() {
    $("#show").click(function() {
        $("#showcontent").show();
    });
});

1 个答案:

答案 0 :(得分:0)

从评论中可以看出,解决方案如下:

&#34;添加jquery参考源&#34;