1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// IE
if(window.frames['nom_iframe']) {
frameWindow = window.frames['nom_iframe'];
frameDocument = window.frames['nom_iframe'].document;
}
// Gecko
else if(document.getElementById('nom_iframe').contentDocument) {
frameWindow = document.getElementById('nom_iframe');
frameDocument = document.getElementById('nom_iframe').contentDocument;
}
function _leftClick () {
window.alert("click");
}
//IE
if (frameDocument.attachEvent) {
window.alert("IE");
frameDocument.attachEvent('onclick',_leftClick);
}
// Gecko
else if (frameDocument.addEventListener) {
window.alert("Gecko");
frameDocument.addEventListener('click', _leftClick, false);
} |