使用带有React的jQuery UI Timepicker Addon

时间:2015-04-07 03:47:01

标签: javascript jquery jquery-plugins reactjs jquery-ui-timepicker

我正在尝试在我正在编写的React组件中使用jQuery UI Timepicker Addon。但是,每当我尝试使用它时,我都会收到一个错误,即没有定义Addon添加到jQuery的“datetimepicker”函数。

我认为我遇到的问题的一部分(或者整个)是React中没有这个模块,但我通过React导入jQuery。我正在努力做什么...

的index.html:

<!DOCTYPE html>
<html lang='eng'>
  <head>
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- jQuery UI core CSS -->
    <link rel="stylesheet" href="dist/jquery-ui.css">

    <!-- jQuery UI Timepicker Addon CSS -->
    <link rel="stylesheet" href="dist/jquery-ui-timepicker-addon.css">
</head>
  <body>
    <p style="color: white">
      If you see this there is a problem with React on the site.
    </p>
    <script src="dist/bundle.min.js"></script>
    <script src="js/jquery-ui.min.js"></script>
    <script src="js/jquery-ui-timepicker-addon.js"></script>
  </body>
</html>

正如您所看到的,由于Addon目前不作为React组件存在(至少我找不到它),我手动将其与jQuery UI一起导入。

我的组件(通过其他组件包含在索引中):

/** @jsx React.DOM */
var React = require('react');
var jQ    = require('jquery');

var Time = React.createClass({
    componentDidMount: function() {
        jQ('#startDate').datetimepicker({
            timeFormat: "HH:mm:ss",
            onClose: function() {
                console.log("Timepicker closed");
            }
        });
    },
    render: function() {
        return (
            <input id="startDate" className="input-xs datetime modern" type="datetime-local" />
        );
    }
});

module.exports = {Time: Time};

如何将Timepicker Addon包含在此React组件中?

旁注:我在很大程度上使用Timepicker是因为它弹出其他元素的程度,以及它包含对秒和各种时间格式的支持。我现在正在使用“datetime-local”输入,但他们并没有真正削减它:(

1 个答案:

答案 0 :(得分:1)

尝试在此处添加jQuery:

<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/jquery-ui-timepicker-addon.js"></script>
<script src="dist/bundle.min.js"></script>

删除

var jQ    = require('jquery');

并使用$代替jQ

$('#startDate').datetimepicker({
        timeFormat: "HH:mm:ss",
        onClose: function() {
            console.log("Timepicker closed");
        }
    });

我也认为你可以使用this.getDOMNode()代替'#startDate'

 $(this.getDOMNode()).datetimepicker({
        timeFormat: "HH:mm:ss",
        onClose: function() {
            console.log("Timepicker closed");
        }
    });