gpt4 book ai didi

javascript - 在联系表 7 中下载 pdf 在新标签中提交

转载 作者:行者123 更新时间:2023-11-30 06:20:24 26 4
gpt4 key购买 nike

我在联系表 7 上创建了一个,在提交时必须下载 pdf。

虽然他们的脚本对我有用。但是它不会在新选项卡中打开。如何在 window.location 中打开新选项卡,或者如果 window.open 我如何解析 urs 中的值。

function add_this_script_footer() { ?>
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
if ( '170' == event.detail.contactFormId ) {
var inputs = event.detail.inputs;
var urs = inputs[6].value;
window.location.href=urs;
setTimeout(function(){ loation.reload(); }, 3000);
}
}, false );
</script>
<?php
}

add_action('wp_footer', 'add_this_script_footer'); ?>

最佳答案

您可以尝试使用 window.open 和目标 _blank,如下所示。

 window.open(
urs,
'_blank'
);

关于javascript - 在联系表 7 中下载 pdf 在新标签中提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53493587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com