JS关闭标签页不提示

调用下面的方法就行了,亲测通过!

function skip() {

    window.opener = null;

    window.open('', '_self');

    window.close();



}

 另外,关于js跳转中target标签的一些属性和作用引用他人blog:

http://www.cnblogs.com/burandanxin/archive/2008/06/20/1227121.html

你可能感兴趣的:(js)