0
阻止週末我用下面的腳本從這裏無法從jQuery日期選擇器
選擇Extensions
以檢查該鏈接我張貼
最小的頁面,但我無法阻止本週結束,如果他指定,以便任何一個可以告訴我爲什麼寫這是我做了什麼
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.datepick.js"></script>
<style type="text/css">
@import "css/jquery.datepick.css";
</style>
<script type="text/javascript">
$(function() {
$('#txtPaymentDate').datepick({
onDate: $.datepick.noWeekends, showTrigger: '#calImg'
});
});
<asp:TextBox ID="txtPaymentDate" runat="server" OnTextChanged="txtPaymentDate_TextChanged" Width="136px"></asp:TextBox>
<div style="display: none;"> <img id="calImg" src="images/calendar.gif" alt="Popup" class="trigger" /> </div>
我要和週日歷結束可選擇任何一個可以告訴什麼是錯的我在做什麼
我懷疑你是否需要使用'beforeShowDay'爲 – V4Vendetta
這是否幫助http://stackoverflow.com/questions/4495284/jquery- tools-disable-weekend-days – V4Vendetta
實際上根據該頁面給出的文檔沒有指定'beforeshowday',並且如果你看他編寫的腳本,它是相同的,但仍然不起作用 – Venkat