gpt4 book ai didi

javascript - 单击输入时打开日期选择器

转载 作者:行者123 更新时间:2023-11-30 14:32:56 27 4
gpt4 key购买 nike

我这里有这个输入类型的日期,目前,日期选择器只会在用户单击其字段中的向下箭头按钮时显示。我想要发生的是,每次用户单击输入字段时打开日期选择器。

<input type="date" id="date_of_purchase" name="date_of_purchase" class="input-field input-date" placeholder="Inköpsdatum">

最佳答案

来自 jQuery UI page for datepicker :

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
</script>
</head>
<body>

<p>Date: <input type="text" id="datepicker"></p>


</body>
</html>

编辑

Creating a datepicker with fall back on jquery

关于javascript - 单击输入时打开日期选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50896240/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com