当鼠标移到文字上,文字放大的ASP代码
发布网友
发布时间:2024-10-24 17:54
我来回答
共1个回答
热心网友
时间:2024-10-29 17:15
不用那么复杂吧?JavaScript就搞定了,记得加点分哦,嘿嘿~~
<script language="javascript">
function change(obj){
if(obj.id=="label1"){
obj.innerHTML="<h1>标签1</h1>";
label2.innerHTML="标签2";
}else{
obj.innerHTML="<h1>标签2</h1>";
label1.innerHTML="标签1";
}
}
</script>
<table border="1">
<tr>
<td id="label1" name="txt" onmouseover="change(this)">标签1</td>
<td id="label2" onmouseover="change(this)">标签2</td>
</tr>
</table>