如何将链接重定向到联系人表单7中的新选项卡?

时间:2020-12-07 作者:Mohammed Hussain Merchant

我试图将我的联系表格7重定向到特定的pdf链接。但我不知道如何在新标签中打开它。有人能帮我做同样的事情吗?

下面是我的代码。。。

add_action( \'wp_footer\', \'mycustom_wp_footer\' );
function mycustom_wp_footer() {
?>
<script type="text/javascript">
document.addEventListener( \'wpcf7submit\', function( event ) {
if ( \'876\' == event.detail.contactFormId ) {
    location = \'https://spilledsunshine.com/wp-content/uploads/2020/10/10-Reminders-To-Myself-By-Ishita-Mehta.pdf\';
    target = \'_blank\';
}
}, false );
</script>
<?php
}
目标=“\\u blank”;不工作在新选项卡中是否有其他选项可打开?

1 个回复
SO网友:Aurovrata

你说得对,

<a target="_blank" href="https://google.com">Google</a>
The_blank 指令opens the link in a New window/tab 取决于浏览器设置。这是在新选项卡中实现重定向的唯一方法,但完全取决于用户的浏览器设置,您无法控制该设置。

无论如何,这是not recommended 在新窗口/选项卡中打开pdf。

相关推荐

在第三方API响应后发送Gravit Forms通知

我有一个重力表单,在提交时将数据发送给第三方API。它与以下代码连接并通过API保存数据。然而,我现在正试图弄清楚,只有当API响应返回为失败或状态代码201以外的任何内容时,才如何发送管理员通知电子邮件。add_action( \'gform_after_submission_1\', \'post_to_third_party\', 10, 2 ); function post_to_third_party( $entry, $form ) { $post_url =