博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
日历 练习
阅读量:4980 次
发布时间:2019-06-12

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

html代码

            
无标题文档

1

JAN

2

FER

3

MAR

4

APR

5

MAY

6

JUN

7

JUL

8

AUG

9

SEP

10

OCT

11

NOV

12

DEC

css代码

1 *{ 2     margin: 0; 3     padding: 0; 4 } 5 #bjdiv{ 6     width: 20%; 7     height: 600px; 8     margin: 0 auto; 9     background-color: beige;10     margin-top: 50px;11 12     13 }14 td{15     background-color: black;16     padding: 15px;17     color: white;18 }19 table{20     21     22 }23 #xsdiv{24     width: 50%;25     height: 100px;26     background-color: blue;27     margin: 0 auto;28     margin-bottom: 50px;29 }

jquery代码

1 //javascript Document 2 var tdobj = null; 3 var xiadivobj = null; 4 $(function(){ 5     initdom(); 6     addEent(); 7 }) 8 function initdom(){ 9     tdobj = $("td");10     xiadivobj = $("#xsdiv");11 }12 function addEent(){13       tdobj.mouseover(function(){14         tdobj.css("color","white");15         $(this).css("color","red");16         xiadivobj.html($(this).attr('date'));17     });18 }

引入了一个jQuery的文件

 

转载于:https://www.cnblogs.com/-dashu/p/9233610.html

你可能感兴趣的文章
SpringBoot第三篇:配置文件详解二
查看>>
Shell中read的选项及用法
查看>>
element-tree-grid(表格树)的使用
查看>>
五一假期
查看>>
Dave Python 练习十七 -- 正则表达式
查看>>
混沌开窍---24幅由算法生成的正方形图像
查看>>
java中newInstance和new(转)
查看>>
全解排序算法
查看>>
面向对象技术
查看>>
关于网络模型中的同步异步的思考
查看>>
centos7 Linux 安装mysql
查看>>
dom的综合练习
查看>>
python中sort方法
查看>>
Cookie
查看>>
44. Wildcard Matching(js)
查看>>
工作细节记录
查看>>
远程桌面服务器和本机粘贴板共享
查看>>
vmware centos6.5 net 配置
查看>>
前端开源库 汇总 (一)
查看>>
python字符串
查看>>