我正在使用 jQuery UI 选择器,我想知道当有人选择日期时是否有可能,它会自动将它们重定向到 URL,如下所示:
index.php?date=2013-10-15
这是我正在使用的插件。
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
Date: <input type="text" id="datepicker" />
我正在使用 jQuery UI 选择器,我想知道当有人选择日期时是否有可能,它会自动将它们重定向到 URL,如下所示:
index.php?date=2013-10-15
这是我正在使用的插件。
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
Date: <input type="text" id="datepicker" />
1)您需要的是window.location.href
,用于重定向页面。您可以自定义打开窗口的方式。
2) 在 datepicker ( ) 中选择日期后onSelect
,您可以change
按照@TJ Crowder 在他的回答中所说的那样组合事件。
你可以这样尝试
$("#datepicker")
.datepicker({
dateFormat: "yy-mm-dd",
onSelect: function(dateText) {
$(this).change();
}
})
.change(function() {
window.location.href = "index.php?date=" + this.value;
});
尝试这个:
$(function () {
$("#datepicker").datepicker({
dateFormat: "yy-mm-dd",
onSelect: function () {
window.open(document.URL + '?date=' + this.value);
}
});
});
我希望这会按照您的要求进行。
日期:
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
function myFunc(){
var dateData = $("#datepicker").val();
if(dateData != '' ){
var url = "http://www.index.php?date="+ dateData ;
window.open(url);
}
}
</script>
<body>
<p>Date: <input type="text" id="datepicker" onchange="myFunc();" /></p>
</body>