0

我需要将日期选择器添加到我的网站(实时比分网站)我需要根据所选日期更改固定装置。我尝试了很多 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>

我希望尽快得到答复 thx

4

1 回答 1

1

jQueryUI 覆盖了 change 函数,因此您要使用 jQueryUI 事件,例如 onSelect。

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

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

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

于 2013-01-12T08:53:40.630 回答