当我点击帖子时,它会打开一个随机帖子,而不是我点击的帖子。
$postid = get_the_ID();
位于我的代码的开头。
这是我在onlick=''
内部<a>
标记内使用的功能,该标记位于帖子图片周围
<script type="text/javascript">
function wholeAd(){
var permalink = '<?php echo get_permalink($postid); ?>';
window.open(permalink, 'newwindow', 'width=900, height=650');
return false;
}
</script>
<div class="ad-box span3">
<a class="ad-image" onclick='wholeAd()'>
答案 0 :(得分:0)
您不必创建功能
<a href="<?php the_permalink(); ?>" onclick="window.open(this.href,'newwindow', 'width=900, height=650');return false;">
答案 1 :(得分:0)
对于Popup,你可以使用类似的东西
"<a href='javascript:OpenPopUpPageWithTitle('"+oListItem.get_item('Url').get_url()+"', 'NotificationCallback', "+oListItem.get_item('Width')+", "+oListItem.get_item('Height')+",'" + oListItem.get_item('Title') + "');'> " + oListItem.get_item('Title') + "</a>"
对于新窗口,你可以使用类似的东西
<a target='_blank' href='url' style='styles'>Title</a>
希望这有帮助,如果它解决了您的查询,请将其标记为答案