この質問が何度も寄せられていることは承知していますが、google や stackoverflow を検索してさまざまな試みを行っても、問題の解決策が見つかりません。
ここに私のJSがあります:
function Redirect(id)
{
window.open("go.php?id=" + id, "_blank");
}
function LinkPop(id)
{
xmlObj = new XMLHttpRequest();
xmlObj.open("GET", "pop.php?id=" + id, false);
xmlObj.send();
document.getElementById(id).style.fontSize = xmlObj.responseText + "px";
document.getElementById(id).title = "Clicked " + (xmlObj.responseText - 18) + " times";
window.setTimeout(function(){Redirect(id);}, 2000);
}
2 秒の遅延と新しいページの開始を除いて、すべてが機能します。ご覧のとおり、私は役に立たなかった閉鎖を試みました。私は非常に基本的なことを見逃していると思います...
助けてくれてありがとう。