2017-08-27 8 views
0
function myFunction() { 
var x = document.querySelectorAll("a"); 
var i; 
for (i = 0; i < x.length; i++) { 
    window.location.href = "https://google.com/"; 
} 
} 

このスクリプトをデスクトップでのみ使用するにはどうすればよいですか?Popunder/Tabunderスクリプトがモバイルで動作しないか、デスクトップ専用に設定されている

携帯端末でも使用できます。

スクリプトは現在のタブをgoogleにリロードし、テストリンクを含む別のタブを開きます。 テストリンク

私はこれを手伝ってくれることを願っています。好ましくはjQueryなし。

答えて

0

あなたはおそらく意味するか

function myFunction() { 
    var x = document.querySelectorAll("a"); 
    for (var i = 0; i < x.length; i++) { 
    x[i].onclick=function() { 
     window.open("https://google.com/","blank"); 
    } 
    } 
} 

または

function myFunction() { 
    var x = document.querySelectorAll("a"); 
    for (var i = 0; i < x.length; i++) { 
    x[i].onclick=function() { 
     window.open(this.href,"_blank"); 
     location="https://google.com/"; 
    } 
    } 
} 
関連する問題