スクリプトタグに宣言された関数displayJsonWithAjax
と関数displayOtherJsonWithAjax
のhtmlファイルがあります。とき選択ボックスの変更htmlファイルで宣言されているjavascriptで関数を呼び出す方法
別のスクリプトタグでは、私はこのコードでこれらの関数を呼び出す:
<script>
import fetchJson from 'some.module'
function displayJsonWithAjax() {
...
}
function displayOtherJsonWithAjax() {
...
}
</script>
<script>
$(document).ready(function() {
$('#selectBox').change(function() {
displayJsonWithAjax();
displayOtherJsonWithAjax();
}).change();
});
</script>
ブラウザでデバッグするとき、私は次のエラーを取得する:
ReferenceError: displayJsonWithAjax is not defined
場合私はすべての関数を同じスクリプトタグに入れようとしますが、ブラウザがページをロードするときにコードは自動的に実行されません。どうすればこれら2つの関数を呼び出すことができますか?
あなたにも私たちにスクリプトタグを表示することができますか? – Rajesh
これらの関数の宣言を表示 – Maxx
これをjsfiddleで再生成することができます – Alex