countUp Javascriptパッケージを実装しようとしていて、エラーが発生しています。[CountUp] targetがnullまたは未定義です。 countUp JavascriptパッケージのgitHubリポジトリはhttps://github.com/inorganik/CountUp.jsです。私の質問は、このパッケージの経験がある個人にとって、このエラーを回避するためにコードを修正する方法はありますか?ここでは、コードです:countUp Javascriptパッケージはどのように動作しますか?
<html>
<title>Count Up Test</title>
<head>
<script src="countUp.js"></script>
</head>
<body>
<h1 id="tester">100</h1>
<script>
var options = {
useEasing: true,
useGrouping: true,
separator: ',',
decimal: '.',
};
tester1 = document.getElementById('tester').innerHTML;
console.log(tester1);
var test1 = new CountUp('tester1', 100, 1500, 0, 2.5, options);
if (!test1.error) {
test1.start();
} else {
console.error(test1.error);
}
</script>
</body>
</html>
私はDOMのためのEventListenerに追加しようとしました、私はwindow.onloadを使用して試してみた、とにconsole.log(tester1は)ただ、tester1
を変える100
なぜこの質問が投票されたのか分かりません。これを投票した人が何らかのフィードバックを提供してくれると助けになるでしょう。 – jeppy7