2

每当有人将鼠标悬停在图像上时,我都会尝试使用下拉菜单。

    <div>
        <img id="whoimg" onmouseover="forImg(this)" src="/static/images/whoisitfor.png" height="70" style="cursor:pointer;">
    </div>

    <div style="position: absolute; right:30px; top: 23px;">
        <span style="font-weight: bold;font-size:30px; color: #C4066B;">FOR</span>
    </div>

</div>

我能够编写 onmouseover 函数。但是由于我是 Web 开发的新手,所以我不知道下一步该做什么。我有三个水平放置的图像,包括上面的一个。

function forImg()
{
alert("FOR");
}

我已经尝试过 javascript,但我无处可去。不知道该怎么办...请帮助我

4

3 回答 3

6

您想在图像鼠标悬停时显示下拉菜单;

让这成为你的菜单:

 <div id="nav_menu">
            <ul>
                <li id="l1">AAAAA</li>
                <li>BBBBB</li>
                <li>CCCCC</li>
                <li>DDDDD</li>
            </ul>
   </div>

在您的图像上绑定事件,如下所示:

$('#whoimg').mouseover( function(){
    $('#nav_menu').slideDown();
});

演示小提琴

于 2013-03-24T17:14:38.277 回答
1

我强烈建议为此使用 CSS。如果您进行一些谷歌搜索,有很多可用的教程......或者您可以采取简单的方法并使用这样的网站: http: //cssmenumaker.com/css-drop-down-menu

于 2013-03-24T17:18:30.417 回答
0

在这里查看它是如何工作的...我相信这会对您有所帮助...不要忘记评价。

祝你好运!


<!DOCTYPE html>
<html>
<head>
<script>
function bigImg(x)
{
x.style.height="64px";
x.style.width="64px";
}

function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
</script>
</head>
<body>

<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">

<p>The function bigImg() is triggered when the user moves the mouse pointer over the image.</p>
<p>The function normalImg() is triggered when the mouse pointer is moved out of the image.</p>

</body>
</html>
于 2013-03-24T17:18:37.153 回答