单击asp菜单项上文本的一侧; 菜单消失

发布于 2024-07-26 23:54:39 字数 404 浏览 6 评论 0原文

如果用户单击下拉菜单中文本的一侧,菜单会消失,但系统不会执行任何操作,用户需要右键单击文本。

单击一侧不应使菜单消失,而应保留在那里,以便用户知道他没有单击正确的位置。

单击文本的一侧应执行类似于 IE 菜单中的操作...

http: //img198.imageshack.us/img198/6074/menuldl.jpg http://img198.imageshack.us/img198/6074/menuldl.jpg

有谁知道如何实现这一点?
谢谢

If user clicks on a side of the text in the drop down menu, the menu disappears but system performs no action and user needs to click right on the text.

Clicking on a side should not disappear the menu but should stay there so that user should know that he has not clicked on the right place.

OR
Clicking on a side of the text should perform an action like in IE menu...

http://img198.imageshack.us/img198/6074/menuldl.jpg http://img198.imageshack.us/img198/6074/menuldl.jpg

Does anyone have idea how to accomplish this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小兔几 2024-08-02 23:54:39

找到解决方案了....实际上asp菜单控件渲染为锚点,我们可以将锚点的显示样式设置为块....

 <style>
    #dvmnu a
    {
        display: block;
    }
</style>

其中dvmnu是asp菜单控件所在的div。

got solution.... Actually asp menu control rendered as anchor, we can set the display style of anchor as block....

 <style>
    #dvmnu a
    {
        display: block;
    }
</style>

where dvmnu is the div under which asp menu control exist.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文