我有这个功能:
function doSomething(e) {
if (!e) var e = window.event;
alert(e.type);
}
当 HTML (Master.html) 页面准备好时......我称之为另一个:
var iniciarTimeOut = function (e) {
document.onload = doSomething;
window.onmousedown = doSomething;
window.onkeypress = doSomething;
};
我在 Master.html 中有一个 iframe,我想将事件检测到 iframe.html 但在 Master.html 中触发事件我正在尝试这样做:
document.onmousedown = top.document.body.fireEvent("onload");
document.onkeypress = top.document.body.fireEvent("onmousedown");
document.onload = top.document.body.fireEvent("onload");
我该怎么做?