1

我是 php 开发人员..我需要为表单中的字段添加 jquery timepicker。我使用此代码

    <script type="text/javascript">
                    $(function() {

                        $("#time2").timePicker({
                            startTime : "08.00", // Using string. Can take string or Date object.
                        endTime : new Date(0, 0, 0, 23, 30, 0), // Using Date object.
                        show24Hours : false,
                        separator : ':',
                        step : 15,
                    });

                });

</script>

我的文本字段

<input type="text" id="time2" name="pickuptime" class="txt-timepiker" size="10" value="08:00 AM" id="tooltipdest" readonly="readonly"/>

这是 chrome、firefox 和 IE10 上的工作。但它不适用于 IE8。如何解决它。有人可以帮助我吗?

4

0 回答 0