Jump to content
  • 0

Всплывающее окно


skv_79
 Share

Question

4 answers to this question

Recommended Posts

  • 0

Примеров не знаю, где-то давно читал, что так можно сделать средствами html без javascript, но если это представляет сложность, то можно и на javascript, но там, в принципе я в курсе как это делается. Специально поискал, везде на javascript. Даже удивительно :rolleyes: Я имел ввиду когда кликаешь на ссылку, должно всплывать окошечко небольшое с определенной информацией, но везде на js это реализовано я смотрю.

Edited by skv_79
Link to comment
Share on other sites

  • 0

На HTML Этого никак не сделать.

Вот пример на JS

<html>
<head>
<script language="JavaScript">
<!-- hide

function openWin2() {
myWin= open("bla.html", "displayWindow",
"width=400,height=300,status=no,toolbar=no,menubar=no");
}

// -->
</script>
</head>
<body>

<form>
<input type="button" value="Открыть новое окно" onClick="openWin2()"/>
</form>

</body>
</html>

и файл bla.html

<html>
<script language="JavaScript">
<!-- hide

function closeIt() {
close();
}

// -->
</script>

<center>
<form>
Нажмите, чтобы закрыть
<input type="button" value="Закрыть" onClick="closeIt()"/>
</form>
</center>

</html>

Link to comment
Share on other sites

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