1

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

代码:

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

<%=len(trimtext,50)%>

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

或:帮我只显示 20 个字符,鼠标悬停显示完整的文本。请提出一些答案。谢谢

4

1 回答 1

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>
于 2012-11-02T15:38:36.143 回答