在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>