日期选择器问题

时间:2013-01-12 08:43:55

标签: jquery datepicker

我需要在我的网站上添加日期选择器(实时得分网站)我需要根据所选日期更改灯具。 我尝试了很多jquery datepickers,但我总是遇到同样的问题: 当我选择一个新的日期时,我不能更改灯具我尝试了jquery事件(选择,更改,现场,.....)没有任何工作,我也无法从文本框中选择日期来获取相关的灯具? 这是我正在处理的示例代码(我甚至无法提醒变更):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
    <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script type="text/javascript" src="zebra_datepicker.js"></script>
    <link rel="stylesheet" href="zebra_datepicker.css" type="text/css">
    <script>
    $(document).ready(function() {

    // assuming the controls you want to attach the plugin to 
    // have the "datepicker" class set
    $('input.datepicker').Zebra_DatePicker();

 });
 $(".datepicker").change(function(){alert('basel')});
    </script>
    </head>
<body><input type="text" name="your_input" class="datepicker"/></body>
<footer></footer>
</html>

我希望很快能得到答案

1 个答案:

答案 0 :(得分:1)

jQueryUI会覆盖change函数,因此您希望使用jQueryUI事件,例如onSelect。

$('input.datepicker').datepicker({
    onSelect: function() { alert("Test"); }
});

当然所有这些都在文档中:

http://api.jqueryui.com/datepicker/#option-onSelect