gpt4 book ai didi

javascript - 将 'onmouseover' 限制为图像的尺寸

转载 作者:太空宇宙 更新时间:2023-11-04 03:15:52 26 4
gpt4 key购买 nike

我在以下页面上有一个问号的小 .gif 图像:Home Page

不幸的是,我使用的代码没有限制问号图像的“onmouseover”区域。即,每当您将鼠标悬停在问号 .gif 的最左/最右侧的任何内容上时,您都会看到相应的消息框。我正在尝试解决此问题,以便您仅在将鼠标悬停在实际图像上时才会收到消息框,而不是在图像的左侧/右侧等。

<style type="text/css"> <!-- .box {
height: 75x;
width: 400px;
padding: 5px;
display: none;
position: absolute;
}
--> </style>

<span onmouseover="ShowText('Message'); return true;" onmouseout="HideText('Message'); return true;" href="javascript:ShowText('Message')">
<div align=center><img src="https://www.weyhrauchlaw.com/Images/Question_mark.gif" width="13" height="14">
</div>
</span><font size="4">
<div
id="Message"
class="box"
>
Rollover message goes here...
</div>

最佳答案

只需将 onmouseover/onmouseout 属性放入图像标签中即可:

<span>
<div align=center><img src="https://www.weyhrauchlaw.com/Images/Question_mark.gif" width="13" height="14" onmouseover="ShowText('Message'); return true;" onmouseout="HideText('Message'); return true;" href="javascript:ShowText('Message')">
</div>
</span><font size="4">
<div
id="Message"
class="box"
>
Rollover message goes here...
</div>

另请注意,现在不鼓励使用事件属性。而是通过 JS 绑定(bind)事件,这鼓励更好地封装 JS 以及更好地分离内容和表示。

关于javascript - 将 'onmouseover' 限制为图像的尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28718166/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com