please help java script about close current window.
this is my code and it does not work.
<input type="button" class="btn btn-success"
style="font-weight: bold; display: inline;"
value="Close"
onclick="closeMe()">
function closeMe()
{
window.opener = self;
window.close();
}
I tried this but it doesn't work either:
var win = window.open("", "_self");
win.close();
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…