Jump to content
  • 0

у window.open на удаленном сервере некорректно отображается title


monstrU
 Share

Question

Привет все.

У меня  тривиальная  задача - открыть  popup окно. но вылезла проблема в IE 7.0 - когда выкладываю страницу на удаленный сервер, то в заголовке окна (тот что сниего цвета)  первым отображается url страницы а потом содержимое title - зачем ? как сделать так, чтобы первым отображалось содержимое title дочернего окна ?

основное окно такое



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Заголовок</title>
</head>
<script>
function OpenWindow()
{
window.open("popupOpen.htm", "_blank" , "width: 400px; height: 200px;", true);
}
</script>
<body>
<input type="button" onclick="java script: OpenWindow();" />
</body>
</html>

 

дочернее окно такое

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Заголовок</title>
</head>
<body>

</body>
</html>

на локальном компьютере у дочерного окна в заголовке текст "Заголовок", а вот как только выкладываю на удаленный хост - первым стоит url хоста ? зачем ?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy