我遇到了从循环中获取排队的帖子ID或永久链接的问题,并把它放在一些jQuery代码中,首先是代码:
<div class="gallery">
<ul id="mycarousel">
<?php global $wp_query;
$args = array_merge( $wp_query->query, array( 'category__in' => array(get_query_var('cat')), 'posts_per_page' => 10));
query_posts( $args ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a class="gallerylink"><?php the_post_thumbnail()?></a></li>
<?php endwhile; endif; ?>
</ul>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".gallerylink").click(function () {
$("#loader").fadeIn(10);
$("#icontent").delay(800).fadeIn(200);
$("#mainFrame").attr("src", "http://www.wordpress.org");
});
$("#hide").click(function () {
$("#loader").css("display", "none");
$("#icontent").fadeOut(200);
setTimeout(function(){
$("#mainFrame").attr("src", "about:blank");
}, 250);
});
});
</script>
<div id ="loader"></div>
<div id="icontent">
<input type="button" id="hide" value="hide"></button>
<iframe src="" scrolling="no" frameborder="0" id="mainFrame" name="mainFrame"></iframe>
</div>
</div>
正如您所看到的,我使用更详细的Wordpress查询排队帖子,它位于category.php文件中。我需要的是在点击链接a.gallerylink时获得一个帖子永久链接,并在jQuery代码中放置wordpress.org链接。但是我应该用什么代替WP网站链接让我的网站知道我选择用当前点击的帖子打开iFrame的帖子链接?
提前感谢!
PS,请不要问为什么iFrame等。必须这样做:))
答案 0 :(得分:0)
为什么不将链接添加到href attr然后使用jquery来抓取它。
只需添加修复代码,以防止点击链接:
$('.gallery').on('click', 'a', function(event) {
event.preventDefault();
var link = $(this).prop('href');
// your code here
});
编辑:一个工作示例http://jsbin.com/EReMohU/1/edit