IE和FF的差异(js版本)

1.1.邪恶的IE在点击按钮的时候,竟然是object;无解

function gs()
{
alert(typeof window.String1);
}
//html


//a.html
opener.String1=String;String.prototype.d=3;

1.2.由正美的《跨文档技术》

window.onload = function(){
var iframe = document.createElement("iframe");
iframe.style.display = "none";
document.body.appendChild(iframe);
frames[frames.length - 1].document.write(
"
原文地址:https://www.cnblogs.com/legu/p/1703455.html