<input type =“date”/>在mozilla中不起作用

时间:2015-11-17 06:34:42

标签: javascript php html5 date

<!DOCTYPE html>
<html>
<body>

<form>
  Birthday: <input type="date" id="datepicker">
  <input type="submit">
</form>

</body>
</html>

我想从日历中选择日期。我使用过HTML5的日期输入     此代码在IE和Chrome中运行良好     而不是在Mozilla工作     请帮我修理代码

1 个答案:

答案 0 :(得分:2)

HTML元素是用于创建接受日期的输入字段的元素的特定版本。

浏览器生成用于输入和更改日期的控件。该日期包括年,月和日。控件本身因浏览器而异; browsers not supporting此类型将显示一个简单的文本控件。

Read more

use datetime picker jquery plugin  will be a good option 

Read this

或尝试此代码: -

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#datepicker" ).datepicker();
  });
  </script>
</head>
<body>

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


</body>
</html>