JavaScript - 获取并显示 <input type ="time"> 中的当前时间,同时还可以使用 <input type ="date">

标签 javascript html

如何在输入 <input type="time"> 中显示当前时间并在使用另一个输入时隐藏其选择器图标 <input type="date">并且使用 JavaScript 不会影响它?

谢谢大家。

最佳答案

具体操作方法如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <input type="time" class="time">
    <input type="date" class="date">
    <script>
        var date = new Date();

        // This will set the current date and time in both the inputs 
        var currentDate = date.toISOString().substring(0 , 10);

        var currentTime = date.toISOString().substring(11 , 16);

        document.querySelector('.date').value = currentDate;

        document.querySelector('.time').value = currentTime;
    </script>

    <style>
        /* Hide the time picker */
        input[type="time"]::-webkit-calendar-picker-indicator {
            display: none;
        }

        /* Hide the date picker icon */
        input[type="date"]::-webkit-calendar-picker-indicator{
            display: none
        }

    </style>
</body>
</html>

关于JavaScript - 获取并显示 &lt;input type ="time"> 中的当前时间,同时还可以使用 &lt;input type ="date">,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70343300/

相关文章:

javascript - html 根据点击的内容不同的页面内容

c# - 如何将 C# 代码值访问到 javascript 中?

html - Bootstrap 按钮下拉菜单隐藏在溢出中

html - 格式化 <div> 中的 <li> 元素

javascript - list 更改时 Html5 缓存不更新

javascript - 如何在即时消息应用程序中为不同的用户分配不同颜色的对话泡泡

javascript - 我怎样才能用 OnClientClick 做到这一点

javascript - 如何在美人鱼节点描述中添加链接?

javascript - 如何在 GWT 中绘制 Canvas

javascript - 在浏览器中播放 HTML5 视频——什么适用于大多数 Android 设备?