大家好,我又遇到了脚本问题。我正在为帖子中的成员个人资料数据进行 jQuery 显示/隐藏。请访问http://www.pimpkings.com/t3-what-up-everyone看看我在说什么,我将代码留在上面,这样你就可以看到它在做什么。
每次我点击一个人显示/隐藏它会打开每个人,我只希望它在用户请求时打开 1 个人。
代码是-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
});
});
</script>
那么html编码就是
<span class="show_hide" style="cursor:pointer;color:#c0c0c0;">Show/hide</span>
<div class="slidingDiv">
<!-- BEGIN profile_field -->
<center> {postrow.displayed.profile_field.LABEL} <center/>
<center> {postrow.displayed.profile_field.CONTENT} <center/>
<center> {postrow.displayed.profile_field.SEPARATOR}<center/>
<!-- END profile_field -->
<center>{postrow.displayed.profile_field.LABEL}<center/>
<center>Online Status<center/><br/>
<center>{postrow.displayed.ONLINE_IMG}<center/>
{postrow.displayed.POSTER_RPG} <br />
<!-- BEGIN contact_field -->
<br/> <br/>
{postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG}
{postrow.displayed.EMAIL_IMG} {postrow.displayed.contact_field.CONTENT}
<!-- END contact_field -->
<span class="show_hide" style="cursor:pointer;color:#c0c0c0;">hide</span></div>
</span>
任何人都可以帮助找出另一个选择器,这样它就不会一次全部打开吗?