console.log(window.close);
window.close = function () {
alert("colse");
}
console.log(window.close);
//************************
console.log(window.open);
window.open = function (){
alert("open");
}
console.log(window.open);
IE 10 64位 控制台结果
function close() {
[native code]
}
function close() {
[native code]
}
function open() {
[native code]
}
function (){
alert("open");
}