/**
* 关闭页面,兼容各浏览器(解决ie提示框问题)
*/
function closeWindow(){
if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Chrome")!=-1) {
window.location.href = 'about:blank'
window.close()
} else {
window.opener = null
window.open('', '_self', '')
window.close()
}
}