Как установить элемент другого iframe? - PullRequest
1 голос
/ 11 января 2010

Я пытаюсь установить элемент из одного iframe в другой.

window.iframes["test"].document.getElementById('lDownload').setAttribute('target',"_blank")
            //document.getElementById('lDownload').setAttribute('target',"_blank")
            window.iframes["test"].document.getElementById('lDownload').setAttribute('href',downloadFilename)
        }
        else
        {
            //noProcess();
            window.frames["test"].document.getElementById('lDownload').setAttribute('href',"javascript:noProcess()")                
        }

Ответы [ 2 ]

1 голос
/ 11 января 2010

- для перезагрузки содержимого iframe


countRefreshes = 0;
function refreshIframe(which) {
    var currHref = '' + parent.frames[which].location + '';
    parent.frames[which].location.href = currHref + '?c=' + countRefreshes + '';
    countRefreshes++;
}
1 голос
/ 11 января 2010

- Для ссылки на iframe javascript / document

parent.frames ( "тест") yourIframeFunction ();.

OR

parent.frames [0] .yourIframeFunction ();

- для ссылки на javascript / document родительского / верхнего документа

parent.yourMainDocumentFunction ();

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...