当点击帖子的标题时,我试图让我的 Wordpress 帖子的内容滑入视图。
我正在使用的代码如下:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".entry-content").hide();
//toggle the componenet with class msg_body
jQuery(".entry-title").click(function()
{
jQuery(this).next(".entry-content").slideToggle(500);
});
});
</script>
看起来很简单,但是在突然实现它之后,我的 .entry-content 类被注释掉了。
有人见过这个吗?
让我知道是否需要更多细节来解释!提前致谢!