pagina padre
var windowRef = null;
function openChildWindow() {
if ((windowRef != null) && (windowRef.closed == false)) {
if (windowRef.closed == false) windowRef.close();
windowRef = null;
}
var windowUrl = 'ChildPage.aspx';
var windowId = 'NewWindow_' + new Date().getTime();
var windowFeatures = 'channelmode=no,directories=no,fullscreen=no,' + 'location=no,dependent=yes,menubar=no,resizable=no,scrollbars=yes,' + 'status=no,toolbar=no,titlebar=no,' + 'left=0,top=0,width=400px,height=200px';
windowRef = window.open(windowUrl, windowId, windowFeatures);
windowRef.focus();
// Need to call on a delay to allow
// the child window to fully load...
window.setTimeout(callChildWindowFunction(), 1000);
}
function callChildWindowFunction() {
if ((windowRef != null) && (windowRef.closed == false)) windowRef.childWindowFunction();
}
Bambino Pagina
function childWindowFunction() {
alert('Hello from childWindowFunction()');
}
fonte
2012-12-19 13:30:27
Sono indovinando si sta parlando di chiamare una funzione all'interno di un iFrame all'interno del documento corrente. Se è così, per favore aggiungilo alla tua domanda. – Bruno
No non ho alcun iframe – Jonathan
se stai usando 'window.parent' e funziona, allora hai un iframe. – jbabey