2017-12-06 13 views
0

私は基本的なjqueryの問題があります。このリンクを新しいタブ/ウィンドウで開くようにしようとしています。私は_blankを追加しましたが、新しいページには行きません。何か案は? HTMLで私のボタンはどのように新しいタブを開くことができますか?

$('#link13').click(function() { 
 

 
    window.location.href= 'https://www.google.com','_blank'; 
 

 
    });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
 
<button type="button" class="btn btn-primary" id="link13">See the Resources</button>

+0

"HTTPS('のwindow.openを試してみてください。//www.google.com','_blank '); ' –

答えて

0
$('#link13').click(function() { 
    window.open(
     'https://www.google.com', 
     '_blank' // <- This is what makes it open in a new window. 
    ); 
}); 
0

次のものを使用することができます。

<button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>

ピュアHTML方法:

<a href="https://google.com" target="_blank">Google</a>

1

使用window.open():

var win = window.open('https://www.google.com','_blank'); 
if (win) { 
    //Browser has allowed it to be opened 
    win.focus(); 
} else { 
    //Browser has blocked it 
    alert('Please allow popups for this website'); 
} 

ブラウザの実装によっては、これはそれが助け場合 はこれを見るに動作します。..

関連する問題