window.open onclick特定帖子与永久链接

时间:2015-10-15 11:29:03

标签: php jquery wordpress

当我点击帖子时,它会打开一个随机帖子,而不是我点击的帖子。

  

$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()'>

2 个答案:

答案 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(&#39;"+oListItem.get_item('Url').get_url()+"&#39;, &#39;NotificationCallback&#39;, "+oListItem.get_item('Width')+", "+oListItem.get_item('Height')+",&#39;" + oListItem.get_item('Title') + "&#39;);'>&nbsp;" + oListItem.get_item('Title') + "</a>"

对于新窗口,你可以使用类似的东西

<a target='_blank' href='url' style='styles'>Title</a>

希望这有帮助,如果它解决了您的查询,请将其标记为答案