最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Contact form 7- Multi File Upload - redirect to another page - Stack Overflow

programmeradmin1浏览0评论

I want to automatically redirect to another page when I drag a file without pressing the send button. I don't really want anything else on the page except the drag and drop interface. Is this possible? I found a code to redirect when the send button is pressed, how can I rewrite it?

<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
setTimeout( () => {
location = '/';
}, 3000 ); // Wait for 3 seconds to redirect.
}, false );
</script>
发布评论

评论列表(0)

  1. 暂无评论