HTML5输入类型(日期,星期,......)不仅可以选择箭头

时间:2017-12-13 10:23:08

标签: html5 input

是否可以使整个input type=date可选?

我只能在点击右侧的小箭头时选择日期。它应该像jQuery datepicker,我可以在div或输入字段的任何地方单击。

1 个答案:

答案 0 :(得分:0)

试试这个JSFiddle。它使用Javascript,就我而言,没有它就能实现。

HTML:

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

    <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>

JS:

 $( function() {
    $( "#datepicker" ).datepicker();
  } );**strong text**

来源JQueryUI