在html上用title属性吧
<img src="C:/test.jpg“ title="你当前看到的是test图片"/>
⑵ js或css鼠标悬停时将div中的文字变成另外的文字
<HTML>
<HEAD>
<styletype="text/css">
.cover{
font-size:14px
}
.cover:hover{
font-size:0px;
}
.coverspan{
display:none;
}
.cover:hoverspan{
display:block;
font-size:14px
}
</style>
</HEAD>
<BODY>
<aclass="cover"href="#cover">测试<span>Test</span></a>
</BODY>
</HTML>
⑶ html5怎么实现鼠标悬停时显示文本
<a href=# title="这里是显示的文字">hello</a>
当鼠标悬停在 hello上一回就会有文字 这里是显示的文字 显示。
⑷ 鼠标悬浮后显示文字的代码是什么
<img src="..." alt="扩展文字" title="提示文字">
要用 title 来提示,这是 W3C 标准的。
alt 是扩展文字,就是当浏览器无法下载图片,或者被设置为不显示图片时显示的代替文字。
⑸ js鼠标悬停显示文字实例
一、首先需要div布局:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js悬停</title>
<style type="text/css">
p {
width: 200px;
height: 200px;
background-color: skyblue;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<p id="txt">我是一个DIV</p>
<script type="text/javascript">
var txt = document.getElementById('txt');
txt.setAttribute("title","鼠标悬停了");
</script>
</body>
</html>
二、div实在的在开发工具里面版的代码效果如下权截图:
⑹ JS中如何实现鼠标悬停在按钮上显示文字
<!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>
<script type="text/javascript">
function show(){
var b=document.getElementById("b");
b.innerHTML="你要显示的文字";
}
function hidd(){
var b=document.getElementById("b");
b.innerHTML="";
}
</script>
</head>
<body>
<div id="a"><input type="button" value="显示文字" onmouseover="show();" onmouseout="hidd();" /><span id="b"></span></div>
</body>
</html>
这是我写的一段关于显示文字的实例,希望对你有帮助
⑺ 用javascript 当鼠标移动到任意文字上弹出框显示文字内容,不是加title属性
可以使用js的onmouseover、onMouseOut事件,鼠标经过的时候可以给a标签增加一个元素并让他显示,移出的时候删掉这个元素
⑻ js 实现鼠标悬浮文字左右移动代码。。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> New Document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="笃行天下">
<meta name="Keywords" content="笃行天下">
<meta name="Description" content=" http://hi..com/xing">
</head><body>
<input type=button value='左滚' onmouseover="leftRoll();" onmouseout="stopRoll();">
<marquee id="dodoRoll" width="30%">笃行天下_笃行天下_笃行天下_笃行天下_笃行天下</marquee>
<input type=button value='右滚' onmouseover="rightRoll();" onmouseout="stopRoll();"> </body>
</html>
<script language="JavaScript">
<!--
document.getElementById("dodoRoll").stop();
function leftRoll()
{
document.getElementById("dodoRoll").direction="left";
document.getElementById("dodoRoll").start();
} function rightRoll()
{
document.getElementById("dodoRoll").direction="right";
document.getElementById("dodoRoll").start();
} function stopRoll()
{
document.getElementById("dodoRoll").stop();
}
//-->
</script>
⑼ 用javascript 当mouseover一个td里的内容时显示一段文字
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>
<script language="javascript">
function fun(){
var a=document.getElementById("content");
a.innerText="ddd";
}
</script>
<BODY>
<table border=1>
<tr>
<td>sss</td>
<td id="content" onmouseover="fun()">鼠标经过</td>
</tr>
</table>
</BODY>
</HTML>
⑽ js鼠标移动至图片上,出现文字鼠标移开文字隐藏代码
直接利用css就能办到鼠标移上去显示 离开隐藏的效果:
<style>
#aa{position:relative;width:300px; height:200px;}
#aa img{display:block;width:100%;height:100%;}
#aa span{display:none;}
#aa:hover span{position:absolute;left:0;bottom:0;display:block;width:100%;height:30px; line-height:30px;text-align:center; color:#eee;}
</style>
JS写法:
<script>
window.onload = function(){
var box = document.getElementById('aa');
box.onmouseover = function(){
this.getElementsByTagName('span')[0].style.display = 'block';
}
box.onmouseout = function(){
this.getElementsByTagName('span')[0].style.display = 'none';
}
}
</script>
<div id="aa">
<img src="http://pic31.nipic.com/20130725/5252423_162905249000_2.jpg" />
<span>文字内容</span>
</div>