如何使用javascript关闭点击按钮上的特定链接? window.close仅关闭我当前的窗口

时间:2018-07-24 09:40:00

标签: javascript html

<html>
<h1>Click on the image below to open google homepage </h1>
<head>
<script type="text/javascript">
    function closeFunc()
    {
        window.close();
    }

</script>
</head>
<body>
<a id="google" href="http://www.google.com" target="_blank">
    <img width="220" height="250" border="0" align="center" src="Wippy Ballons.jpg" alt="image" on>
</a>

<br> <br>

<button onclick="closeFunc()"> Close</button>

</body>
</html>

我正在尝试关闭Google链接,该链接将通过单击图像打开。使用window.close关闭它自己的具有关闭按钮的选项卡。但是我想关闭下一个通过单击图像打开的选项卡。

1 个答案:

答案 0 :(得分:0)

您可以尝试这样:

https://jsfiddle.net/h5mDZ/191/

js:

$("#closeFunc").click(function(e, parameters) { 
 closeFunc();
});
var nextWin;  
$("#google").click(function(e, parameters) {
nextWin=window.open('http://google.com', '_blank');
});  
function closeFunc()
{ 
nextWin.close(); 
}