0
Chart.jsにはjQuery-2.1.3が必要ですが、bootstrap3にはjQuery-1.11.3が必要ですChart.jsとBootstrapを同時に使用する方法を教えてください。 (さまざまなjQueryバージョン)
以下のようにHTMLヘッドタグに書きましたが動作しません。
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="./dist/Chart.min.js"></script>
jQueryファイルはどのように含める必要がありますか?
Chart.jsには特定のjQueryバージョンが必要とは思われません。そのためには、jQueryを使わずにChart.jsを実行できます。 – potatopeelings