Ben aşağıdaki kod ile sorun yaşıyorum:
<link type="text/css" href="http://jqueryui.com/latest/themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.4.2.js"></script>
<script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/tags/1.8rc1/jquery-1.4.1.js"></script>
<script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/tags/1.8rc1/ui/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#datepicker").datepicker({ gotoCurrent: false,
onSelect: function(date, inst) { window.location = "diary.php?date="+date; },
dateFormat: 'dd-mm-yy',
defaultDate: <?php if(isset($_GET['date'])) { echo $_GET['date']; } else { echo "null"; } ?>
});
});
</script>
Ben bir tarih ve anahtar sayfaları seçmek Nedense, - bu defaultDate
$_GET['date']
Paramtre olduğunu gitmez. Bunun yerine bazı rasgele sayfasına söner. defaultDate
açıklama bu kod ayarlamak dizelerinin aynı biçimde kabul edeceğini söyledi.
Herhangi bir yardım için şimdiden teşekkür ederiz.