• js实现时分秒


    <html>
    <head></head>
    <body>
    Time:<input name="time" type="text"  onclick="_SetTime(this)"/>
    </body>
    </html>
    <script type="text/javascript">
    var str = "";
    document.writeln(
    "<div id=\"_contents\" style=\"padding:6px; background-color:#E3E3E3; font-size: 12px; border: 1px solid #777777;  position:absolute; left:?px; top:?px; ?px; height:?px; z-index:1; visibility:hidden\">");
    str 
    += "\u65f6<select name=\"_hour\">";
    for (h = 0; h <= 9; h++) {
        str 
    += "<option value=\"0" + h + "\">0" + h + "</option>";
    }
    for (h = 10; h <= 23; h++) {
        str 
    += "<option value=\"" + h + "\">" + h + "</option>";
    }
    str 
    += "</select> \u5206<select name=\"_minute\">";
    for (m = 0; m <= 9; m++) {
        str 
    += "<option value=\"0" + m + "\">0" + m + "</option>";
    }
    for (m = 10; m <= 59; m++) {
        str 
    += "<option value=\"" + m + "\">" + m + "</option>";
    }
    str 
    += "</select> \u79d2<select name=\"_second\">";
    for (s = 0; s <= 9; s++) {
        str 
    += "<option value=\"0" + s + "\">0" + s + "</option>";
    }
    for (s = 10; s <= 59; s++) {
        str 
    += "<option value=\"" + s + "\">" + s + "</option>";
    }
    str 
    += "</select> <input name=\"queding\" type=\"button\" onclick=\"_select()\" value=\"\u786e\u5b9a\" style=\"font-size:12px\" /></div>";
    document.writeln(str);
    var _fieldname;
    function _SetTime(tt) {
        _fieldname 
    = tt;
        
    var ttop = tt.offsetTop;    //TT控件的定位点高
        var thei = tt.clientHeight;    //TT控件本身的高
        var tleft = tt.offsetLeft;    //TT控件的定位点宽
        while (tt = tt.offsetParent) {
            ttop 
    += tt.offsetTop;
            tleft 
    += tt.offsetLeft;
        }
        document.all._contents.style.top 
    = ttop + thei + 4;
        document.all._contents.style.left 
    = tleft;
        document.all._contents.style.visibility 
    = "visible";
    }
    function _select() {
        _fieldname.value 
    = document.all._hour.value + ":" + document.all._minute.value + ":" + document.all._second.value;
        document.all._contents.style.visibility 
    = "hidden";
    }
    </script>
  • 相关阅读:
    正则表达式替换所有符合条件的字符
    关于jquery ajax不执行success回调函数
    关于jquery绑定事件执行两次
    同步选中所有checkbox
    Jquery动态改变my97datepicker的日期形式
    关于button在td中时,zclip复制不能的问题
    关于各种高度的获取方法
    慎用--skip-grant-tables命令
    Mysql中判断是否存在
    前端html
  • 原文地址:https://www.cnblogs.com/lhws/p/2411497.html
Copyright © 2020-2023  润新知