PHP
- 1 ответ
- 0 вопросов
0
Вклад в тег
<head>
...
<base target="_parent" />
...
</head>
var newBase = document.createElement('base');
newBase.target = '_parent';
window.frames[0].getElementsByTagName('head')[0].appendChild(newBase);