2016-11-03 32 views
0

私が最初liタグショーをクリックすると、JSの機能をトリガー非常に簡単なリストを作ってきたが、それはエラーで文句を言う:キャッチされていないにReferenceError:getTodayRequestが定義されていない(...)

Uncaught ReferenceError: getTodayRequest is not defined(…) 

ここにありますコード

<!DOCTYPE html> 
<html xmlns:th="http://www.thymeleaf.org"> 
<head> 
<script> 
     function getTodayRequest(){ 
      console.log("here is today"); 
      alert("here is today"); 
     } 

</script> 
</head> 
<body> 
    <div th:fragment="statistic_menu"> 
     <div class="panel"> 
      <div class="panel-body"> 
       <div class="col-md-6 col-sm-12"> 
        <h3 class="animated fadeInLeft">Statistic</h3> 

        <ul class="nav navbar-nav"> 
         <li onclick="getTodayRequest()">Today</li> 

        </ul> 
       </div> 
      </div>      
     </div> 
    </div> 

</body> 
</html> 
+0

すべて正しいです...エラーなし – cna327

+0

@DineshSubhashPatil、なぜjQueryが必要ですか? –

答えて

0

何も、それは罰金

<!DOCTYPE html> 
 
<html xmlns:th="http://www.thymeleaf.org"> 
 
<head> 
 
<script> 
 
     function getTodayRequest(){ 
 
      console.log("here is today"); 
 
      alert("here is today"); 
 
     } 
 

 
</script> 
 
</head> 
 
<body> 
 
    <div th:fragment="statistic_menu"> 
 
     <div class="panel"> 
 
      <div class="panel-body"> 
 
       <div class="col-md-6 col-sm-12"> 
 
        <h3 class="animated fadeInLeft">Statistic</h3> 
 

 
        <ul class="nav navbar-nav"> 
 
         <li onclick="getTodayRequest()">Today</li> 
 

 
        </ul> 
 
       </div> 
 
      </div>      
 
     </div> 
 
    </div> 
 

 
</body> 
 
</html>
の作品間違っていません

関連する問題