博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery 标签页
阅读量:5013 次
发布时间:2019-06-12

本文共 688 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>
    <style>
        .tab {
            width:100px;
            height:30px;
           
float:left;
            background-color:green;
            color:white;
            margin:1px;
        }
        #dv {
            border:1px solid pink; 
            width:404px;
            height:100px;  
            background-color:aliceblue
                     
        }
    </style>
    <script src="jquery-1.7.1.min.js">
    </script>
    <script>
        $(function () {
         
  $('div.tab').mouseover(function () {
                $('#dv').text(this.innerText);
            });
        });
    </script>
</head>
<body>
    <div class="tab">标签1</div>
    <div class="tab">标签2</div>
    <div class="tab">标签3</div>
    <div class="tab">标签4</div>
    <div id="dv">content</div>
</body>
</html>

转载于:https://www.cnblogs.com/dxmfans/p/9434694.html

你可能感兴趣的文章
学习总结 javascript 闭包
查看>>
实验吧一个小坑注入
查看>>
【 D3.js 高级系列 — 8.0 】 打标
查看>>
Mac必备软件推荐
查看>>
Android Gson深入分析
查看>>
display:flow-root
查看>>
判读字符串是否为空的全局宏-分享
查看>>
iOS中Block的基础用法
查看>>
mac 终端 使用ftp命令
查看>>
22-reverseString-Leetcode
查看>>
Centos 开机自动联网
查看>>
cocos2dx使用lua和protobuf
查看>>
使用Spring配合Junit进行单元测试的总结
查看>>
HDOJ 5630 Rikka with Chess
查看>>
netcore2.1 在后台运行一个任务
查看>>
PostgreSQL pg_hba.conf 文件简析
查看>>
android o logcat read: unexpected EOF!
查看>>
[Scrum]2010/12/28 —— 第一天!
查看>>
ASP.NET MVC模式 温习(一)排除MVC模式误区
查看>>
Mysql的read_only 只读属性说明 (运维笔记)
查看>>