首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    好多Javascript日期选择器呀–2

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml"> <head> <title>calender select</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <style type='text/css'> body {      font-family:"Lucida sans unicode", sans-serif;      font-size:12px;      margin:0;      padding:0;      height:100%;      } #basis {      display:inline;      position:relative;      } #calender {      position:absolute;      top:30px;      left:0;      width:220px;      background-color:#fff;      border:3px solid #ccc;      padding:10px;      z-index:10;      } #control {      text-align:center;      margin:0 0 5px 0;      } #control select {      font-family:"Lucida sans unicode", sans-serif;      font-size:11px;      margin:0 5px;      vertical-align:middle;      } #calender .controlPlus {      padding:0 5px;      text-decoration:none;      color:#333;      } #calender table {      empty-cells: show;      width:100%;      font-size:11px;      table-layout:fixed;      } #calender .weekdays td{      text-align:right;      padding:1px 5px 1px 1px;      color:#333;      } #calender .week td {      text-align:right;      cursor:pointer;      border:1px solid #fff;      padding:1px 4px 1px 0;      } #calender .week .today {       background-color:#ccf;      border-color:#ccf;      } #calender .week .holiday {      font-weight: bold;      } #calender .week .hoverEle {      border-color:#666;      background-color:#99f;      color:#000;      }

    01
    领券