由于我是AJAX新手,我仍在学习,在过去几周里我学到了很多。但在AJAX问题上,我确实需要更多帮助:
我使用以下代码在滑块中显示post\\u缩略图,单击该滑块可转到特定的公文包片段:
<ul id=\'portfolio-list\'>
<?php query_posts(\'cat=16&post_type=portfolio\'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li class="<?php foreach((get_the_category()) as $category ) { echo $category->slug . \' \'; } ?>all">
<?php if ( has_post_thumbnail() ) { ?>
<a id="caseStudy" href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a>
<?php } else { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><img src="<?php bloginfo(\'template_url\'); ?>/images/post-thumb.jpg" width="141" height="73" alt="<?php the_title_attribute(); ?>" /></a>
<?php } ?>
</li>
<?php endwhile; endif ?>
<?php wp_reset_query(); ?>
</ul>
我想做的是将公文包的内容加载到同一个页面上。
我正在使用以下代码:
var ajax_load = "<center><img style=\'margin-top: 150px;\' src=\'<?php bloginfo("template_url"); ?>/images/loader.gif\' alt=\'Loading...\' /></center>";
var loadUrl = "http://localhost:8888/cnNew/?page_id=4";
$("#ourTeam").live(\'click\', function(){
$("#teamLoad")
.html(ajax_load)
.load(loadUrl + " #innerTeam")
});
将其他项目加载到页面上,但似乎无法通过这种方式调用它来处理动态列出的内容。有没有人能提供一些帮助,帮助我以最佳方式实现我想要做的事情,或者至少是一个方向?
谢谢