我正在处理的一个页面,http://www.northshorern.com/questions-answers/在WinXP SP2上的IE6 / 7中给出了一个错误:
发生了运行时错误。线XYZ。意外调用方法或属性访问。
我已经将问题缩小到调用jQuery手风琴元素的方式,因为当我只是手动输入手风琴儿童时,我没有收到此错误。使用的代码是:
<div id="accordionWrapper">
<div id="accordion">
<?php
query_posts(array(
'post_type' => 'faq',
'showposts' => 10
) );
?>
<?php while (have_posts()) : the_post(); ?>
<h3><a href="#"><?php the_title(); ?></a></h3>
<div>
<blockquote>
<?php the_content(); ?>
</blockquote>
</div>
<?php endwhile;?>
</div>
</div>
所以,有些东西不在这里似乎无法解决这个问题。任何帮助将不胜感激。感谢。