在每个月的第一个星期三禁用某些东西 - jquery?

时间:2011-11-04 16:36:41

标签: php jquery

我正在寻找能够在每个月的第一个星期三早上8点禁用链接的内容。这是否可以在jquery或其他东西中完成。我是jquery的初学者,所以所有细节都很有帮助。谢谢

*编辑:也是为了让它在下周五重新启用。

这是我与之合作的内容,每个人都有帮助:

<!-- 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
}
?>

2 个答案:

答案 0 :(得分:1)

我认为考虑服务器端替代方案会更好,更容易,更安全。我的意思是提供不同的响应,或者只是在需要时禁用特定请求的响应。这在您的服务器上更容易和集中。然后由您来决定如何通知用户他在某些时候不能使用该链接。

答案 1 :(得分:1)

IMO你最好在支持的

中做这件事

用它来检查今天是否是当月的第一个星期三

$firstwed = strtotime("first Wednesday ". date("F Y"));
$now = strtotime('today'); 

if( $firstwed == $now) {
  echo "today is the first wednesday for the month";
  // do something
} else {
  echo "today is not the first wednesday of the month";
  // do something else
}