-4
有人可以幫助我更改代碼,我想讓我的成員在3月至10月(每年)之間選擇一個星期日。 但僅限本月的第2或第4個週日。JQuery Datepicker
感謝您的幫助!
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript">
$(function() {
$("#datepic").datepicker(
{ beforeShowDay: function(day) {
var day = day.getDay();
if (day == 2 || day == 5| day == 4| day == 6| day == 1| day == 3)
{
return [false, "somecssclass"]
} else {
return [true, "someothercssclass"]
}
}
});
});
</script>
</head>
<body>
<p>Uw voorkeursdatum: <input id="datepic"/>
</body>
</body>
</html>
你應該嘗試,並開始開發和提問,如果您有任何問題或看到錯誤。 –
這個答案應該可以幫助你的方式http://stackoverflow.com/a/9295262/2822450 – developius
我改變了你只能選擇星期日,但現在呢?我想只啓用每個月的第二個和第四個星期天。 – tiresz