Jump to content
  • 0

window.event mozilla


TonKhaO
 Share

Question

Народ привет!

Вот код

<html>
<head>
<style>
html,body {height: 100%;}
</style>
<script>
var mX,mY; // глобальные переменные

function getMouseCoords(event)
{
mX = window.event.x;
mY = window.event.y;
alert(mY);
}

</script>
</HEAD>
<body>

<DIV onClick="getMouseCoords(event);" id="mydiv" style="position:absolute; top:100; background: silver; height: 100px; width: 100px; left:100px;"></DIV>
<a onClick="getMouseCoords(event);" href="#">click</a>
</body>
</html>

Смысл моего скрипта таков, просто по щелчку по какому то из элементов на странице получить координаты курсора мышки, все работает в ие и опере и прочих брозах, но как вы наверное догадались в мозилле не пашет так как там заведомо нет window.event, немного покопавшись в нете нашел следующее

function show_menu(event)
{
if (!event)event=window.event;
document.getElementById('blok').style.visibility='visible';
document.getElementById('blok').style.left=event.clientX+'px';
document.getElementById('blok').style.top=event.clientY+'px';
}

onMouseMove="show_menu(event);"

И люди клянуться что такой подход работает в мозилле, у меня же - фиг, помогите плз!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
<html>
<head>
<style>
html,body {height: 100%;}
</style>
<script type="text/javascript">
function getMouseCoords(e) {
e = e||window.event;
alert('x: '+ e.clientX +', y: '+ e.clientY);
}
</script>
</HEAD>
<body>

<DIV onclick="getMouseCoords(event)" id="mydiv" style="position:absolute; top:100; background:

silver; height: 100px; width: 100px; left:100px;"></DIV>
<a onclick="getMouseCoords(event)" href="#">click</a>
</body>
</html>

Link to comment
Share on other sites

  • 0

ПАСИИИИИБКИ, а можно для такого новичка как я немного комментов, в чем собсно разница моего метода и вашего? Особенно конечно не понятна строка e = e||window.event;

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