我在 wordpress 中使用 ajax 页面加载器插件。在我使用的每个帖子页面中
<a id="a_link" rel="nofollow" title="Print This Page" target="_blank" href="http://myurl.com/temp/?page_id=444&print=1">
<img class="WP-PrintIcon" style="border: 0px;" title="Print This Page" alt="Print This Page" src="http://myurl.com/temp/wp-content/plugins/wp-print/images/print.gif">
</a>
<a id="a_link" rel="nofollow" title="Print This Page" target="_blank" href="http://myurl.com/temp/?page_id=444&print=1">Print This Page</a>
但未能打开新标签。我还在加载内容的 ajax 页面加载器插件脚本中编写 JS 代码。在 ajax 页面加载时加载此脚本。
jQuery('a').click(function (event) {
var id = jQuery(this).attr("id");
if(id == 'a_link'){ var href = jQuery(this).attr("href");
jQuery('#supersized-loader').css('display','none');
window.open(href);
}
});