首页 > 解决方案 > how hide/show div depending on days using javascript or php?

问题描述

i want to show div only Sunday Monday,Tuesday,Wednesday,Thursday

and hide it in ,Friday,Saturday

this my code:

<script>
function newep(){
var fecha = new date();
var day = fecha.getDay();
if(day == 4 || day == 5){
 console.log("show nothing");
}else if(day == 6 || day == 3){
 console.log("New Episodde");
}
}
</script>
<div onload="newep()">here the output</div>

标签: javascriptphphtml

解决方案


我从你的代码中得到了这个:

<script>
function newep(node)
{
var fecha = new date();
var day = fecha.getDay();
if(day == 4 || day == 5){
 node.hidden=true;
 //or : node.disabled=true
}
}
</script>

```<div onload="newep(this)">here the output</div>```

使用 php 你可以这样做:

<?php
$date_number=date('w');
if($date_number==5 || $date_number==6)
{
 ?>
 //your div
 <?php
}
?>

推荐阅读