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>
すべて正しいです...エラーなし – cna327
@DineshSubhashPatil、なぜjQueryが必要ですか? –