Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>鼠标滑过文字内容展开</title>
</head>
<body>
<style>
.div{ width:80px; height:15px; overflow:hidden;font-size:10.5pt;
}
</style>
<script type="text/javascript">
function scr(){
var x=document.getElementsByTagName("div");
x[0].onmouseover=function(){
x[0].style.overflow="visible"
x[0].style.width="auto"
x[0].onmouseout=function(){
x[0].style.overflow="hidden"
x[0].style.width="80"
window.onload=scr;
</script>
<div class="div">
<p>手册网(www.CodeFans.net)提供编程源码、网站源码、网页素材、书籍教程、网站模板、网页特效代码等,做有质量的学习型源码下载站。
</p>
</div>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx