Heim  >  Fragen und Antworten  >  Hauptteil

一个用javascript写的if判断,在页面中好用但是卸载js里面就不好用了

<strong id="syhw"></strong>
<script>
var hours =  (new Date()).getHours();
var syhw1 = document.getElementById("syhw");
if(hours<10&&hours>=8){
    syhw1.innerHTML="13";

}
else if(hours<12&&hours>=10)
{//预约剩余10
    syhw1.innerHTML="10";
}
else if(hours<16&&hours>=12)
{//预约剩余7
    syhw1.innerHTML="7";

}
else
{
syhw1.innerHTML="5";
};
</script>

把这端放到js里面就不起作用了怎么办,难道必须用jq写吗

代言代言2817 Tage vor573

Antworte allen(1)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-02-23 09:07:57

    你把js分离出去了,然后没有在当前页面中调用,所以就不好用喽

    Antwort
    0
  • StornierenAntwort