在新窗口中打开重定向

时间:2018-01-24 06:56:45

标签: javascript

我有以下脚本



<script type="text/javascript">
document.addEventListener( 'wpcf7mailsent', function( event ) {
       location = 'http://example.com';
}, false );
</script>
&#13;
&#13;
&#13;

在这种情况下,如何编辑脚本以在新窗口中打开example.com?谢谢!

5 个答案:

答案 0 :(得分:3)

您可以使用window.open(url,'_blank')

var win = window.open('https://stackoverflow.com' , '_blank');//Require quatations
        win.focus();

答案 1 :(得分:2)

您可以使用以下代码。

    <script type="text/javascript">
document.addEventListener( 'wpcf7mailsent', function( event ) {
       var location = 'http://example.com';
window.open(location,"_blank");
}, false );
</script>

答案 2 :(得分:1)

使用window.open()

document.addEventListener( 'wpcf7mailsent', function( event ) {
       var hre= 'https://google.com';
       window.open(hre,"_blank");
}, false );

希望它有帮助..!

答案 3 :(得分:1)

请在成功后使用此功能在js中进行网址重定向

window.location =“http://www.yoururl.com”;

答案 4 :(得分:0)

使用window.open(“url”);

<!-- begin snippet: js hide: false console: true babel: false -->

function call(){

       window.open('http://example.com');
}
<input type="submit" onclick="call()"/>