HTML:“OnMouseOver”实现

时间:2012-11-02 15:33:24

标签: html css

我已经制作了一些代码,只显示有限的字符,同时以html格式显示,我已将此代码包含在经典的asp文件中。 “onmouseover”我必须显示全文。如何实现这一目标。请提出一些答案。

代码:

<td align="center" class="chaos" width="80%" title="<%=trimtext%>"

&LT;%= LEN(trimtext,50)%&GT;

In my code while displaying i`m dislaying only first 25 characters from string variable "trimtext".Onmouseover how can i dispalying complete text.

OR:帮助我只显示20个字符,并在onmouseover显示完整的文本。请 提出一些答案。 感谢

1 个答案:

答案 0 :(得分:2)

好吧....试试这个:

<html>
<head>
    <style type="text/css">
        #ddv{
            overflow-x:hidden;
            text-overflow: ellipsis;
            cursor: pointer;
        }
        #ddv:hover{
            overflow-x:visible;
        }
    </style>
</head>
<body>
<div id="ddv" style="width: 30px;">
    lskegfoehgfowehfgoqwhfoqwhfgoihqwogfihqwegf
</div>
</body>
</html>