我如何使用jquery发布日期?我使用jquery datetimepicker.i从datetime picker获取日期。现在想发布它像
本地主机/ RND / event.php?日期= 12-12-2012
在同一页面中,我希望将发布/获取值设为
<?php
if (isset($_GET['date'])) {
echo "got the posted date";
}
?>
以下是我如何从datetimepicker获取日期
$(function () {
var pickedDate = $("#datepicker").datepicker({
onSelect: function () {
var day = $(this).datepicker('getDate').getDate();
var month = $(this).datepicker('getDate').getMonth();
var year = $(this).datepicker('getDate').getFullYear();
var OutString = day + " - " + month + " - " + year;
}
});
});
答案 0 :(得分:0)
使用$.get
:
$.get('event.php', { date: OutString }, function(result) {
// do something with the PHP script's output
});
答案 1 :(得分:0)
通常,您应该使用“get”来查询数据并使用“post”来提交数据。
像乔恩说的那样:$.get('event.php', { date: OutString }, function(result) {
// do something with the PHP script's output
});
或
$.post('event.php', { date: OutString }, function(result) {
// do something with the PHP script's output
});