手风琴问题

发布于 2024-11-06 17:20:45 字数 867 浏览 0 评论 0原文

我正在 games.nyls.edu 建立这个网站。如果您看到单击第二列上的任何链接时,它会打开第一个链接。这是代码:

<?php query_posts('category_name=computable-diagrams&showposts=10'); ?>
<?php echo '<a onclick="changeCssClass(\'widget-title3\')" id="imageDivLink" href="javascript:toggle3(\'wp-cpl-widget3\', \'imageDivLink\');"><h3 id="widget-title3" class="widget-title">Computable Diagrams</h3></a> <ul id="wp-cpl-widget3" class="wp-cpl-widget" style="display: none;">'; while (have_posts()) : the_post(); ?>
     <li class="wp-cpl wp-cpl-even"><a href="javascript:toggle9('testcontent3', 'imageDivLink6');">
          <?php the_title(); ?>
          </a>  </li><div id="testcontent3" style="display:none;"><?php the_content();?></div> 
<?php endwhile; ?>
</ul>

我将不胜感激任何帮助

I am setting up this site at games.nyls.edu. If you see when you click on any of the links on the 2nd column it opens up the first link. heres the code:

<?php query_posts('category_name=computable-diagrams&showposts=10'); ?>
<?php echo '<a onclick="changeCssClass(\'widget-title3\')" id="imageDivLink" href="javascript:toggle3(\'wp-cpl-widget3\', \'imageDivLink\');"><h3 id="widget-title3" class="widget-title">Computable Diagrams</h3></a> <ul id="wp-cpl-widget3" class="wp-cpl-widget" style="display: none;">'; while (have_posts()) : the_post(); ?>
     <li class="wp-cpl wp-cpl-even"><a href="javascript:toggle9('testcontent3', 'imageDivLink6');">
          <?php the_title(); ?>
          </a>  </li><div id="testcontent3" style="display:none;"><?php the_content();?></div> 
<?php endwhile; ?>
</ul>

I would appreciate any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不在是我 2024-11-13 17:20:46
<div id="testcontent3" style="display:none;">

这是内部循环...将在页面上产生重复的 id ...您需要为 div 提供唯一的 id

<div id="testcontent3" style="display:none;">

this is inside loop ... will produce duplicate ids on the page ...you need to have unique id's for divs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文