我想更改datepicker僅選擇月份。 我可以喜歡這種改變CSS屬性更改jquery日期選擇器只顯示.css問題的月份
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
</head>
<body style="font-size:62.5%;">
<input class="todaydate" type="text" name="todaydate" />
<p>test paragraph</p>
<script>
$('.todaydate').datepicker();
</script>
<style>
.ui-datepicker-calendar {
display: none;
}
</style>
</body>
</html>
它的工作原理,但是當我想改變的CSS像這樣的jQuery的,它不能正常工作
<script>
$('.todaydate').datepicker();
$('.ui-datepicker-calendar').css({display:'none'})
</script>
請幫助我
我試着貼在
標籤和標籤,但無法正常工作 – chenka 2011-05-06 08:29:15