Jump to content
  • 0

Подскажите с js


Didorri
 Share

Question

Сделал подсказку с помощью css

вот структура


<p class="tt">
<span class="tooltip">
<span class="top">
</span>
<span class="middle">
Тут текст всплывающей подсказки
<a href="#">Ссылка</a>
<input type="button" value="Закрыть" onclick="window.close(".tt")">
</span>
<span class="bottom">
</span>
</span>
</p>

как сделать чтобы по клику на кнопку закрыть она закрывалась?

кнопку с событием онклик вставил а дальше как незнаю

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

А не лучше сделать это с js окном?

 <script type="text/javascript">
function openWin()
{
myWindow=window.open("","","width=200,height=100");
myWindow.document.write("<p>Текст окна</p><input type='button' value='Закрыто' onClick='window.close()'>");
}

function closeWin()
{
myWindow.close();
}
</script>


<input type="button" value="Открыть" onClick="openWin()" />

Либо, думаю, здесь onclick="window.close(".tt")" не очень подходит. Тут скорее нужна js функция, которая скроет подсказку при нажатии на кнопку-ссылку.

Link to comment
Share on other sites

  • 0

А не лучше сделать это с js окном?

 <script type="text/javascript">
function openWin()
{
myWindow=window.open("","","width=200,height=100");
myWindow.document.write("<p>Текст окна</p><input type='button' value='Закрыто' onClick='window.close()'>");
}

function closeWin()
{
myWindow.close();
}
</script>


<input type="button" value="Открыть" onClick="openWin()" />

Либо, думаю, здесь onclick="window.close(".tt")" не очень подходит. Тут скорее нужна js функция, которая скроет подсказку при нажатии на кнопку-ссылку.

Дело в том что я в js не разбираюсь к сожалению.

Ваш вариант работает, но окно виндовское, для изменения его стиля нужно править в js?

у меня в принципе есть вот такой js, такая подсказка мне подходит, вот если бы подсказали как сделать чтобы можно было мышку перенести на саму подсказку, в данный момент если её увести из зоны элемента то подсказка скрывается.


$(document).ready(function() {

$(".tip_trigger").hover(function(){
tip = $(this).find('.tip');
tip.show();
}, function() {
tip.hide();
}).mousemove(function(e) {
var mousex = e.pageX + 20;
var mousey = e.pageY + 20;
var tipWidth = tip.width();
var tipHeight = tip.height();


var tipVisX = $(window).width() - (mousex + tipWidth);

var tipVisY = $(window).height() - (mousey + tipHeight);

if ( tipVisX < 20 ) {
mousex = e.pageX - tipWidth - 20;
} if ( tipVisY < 20 ) {
mousey = e.pageY - tipHeight - 20;
}

tip.css({ top: mousey, left: mousex });
});
});

Link to comment
Share on other sites

  • 0
Ваш вариант работает, но окно виндовское, для изменения его стиля нужно править в js?

В данном случае это и есть скрипт виндовского окна.. Можно сделать со своими стилями, с помощью jQuery. Есть много готовых решений-окон, вот например Impromtu

в данный момент если её увести из зоны элемента то подсказка скрывается.

JS функцией и событиями. Зависит что Вам точно нужно.

Edited by Andrey447
Link to comment
Share on other sites

  • 0

JS функцией и событиями. Зависит что Вам точно нужно.

мне нужно вставить ссылку в подсказку, соответственно чтобы на неё можно было нажать, нужно сместить курсор на подсказку.

знаю что происходит это событием .mousemove, но что куда, не понимаю

Edited by Didorri
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