我每個月的每個第一個星期三都會在上午8點尋找禁用鏈接的東西。這是否可以在jQuery或其他東西中完成。我是jquery的初學者,所以所有的細節都很有幫助。謝謝禁用每個月的第一個星期三的東西 - jQuery的?
*編輯:也讓它重新啓用以下星期五。
這裏是我想出了,每個人WITH HELP:
<!-- determines first Wednesday and first Thursday of the month to echo something different than the rest of the days of the month. -->
<?php
$firstwed = strtotime("first Wednesday, first Thursday". date("F Y"));
$now = strtotime('today');
if($firstwed == $now) {
echo "Registration is closed until Friday. Today is Wednesday or Thursday.";
// do something
} else {
echo "Click Here to register.Today is NOT Wednesday or Thursday;
// do something else
}
?>
你有沒有考慮服務器端的第一個星期三?有人可以改變他們的客戶時鐘作爲一種方式圍繞這 – ManseUK
你是什麼意思? – gstricklind
您要求提供jQuery解決方案 - 這意味着瀏覽器執行代碼 - 即使用客戶端日期/時間設置 - 如果您更改了服務器端腳本(PHP/JAVA等),那麼您可以使用服務器的時間,而不是客戶端 – ManseUK