Javascriptが呼ばれない理由がわからない
javascriptを用いて1~10を選べるプルダウンを作りたい。 - teratail
上記ページを参考に指定したのですが、動きません。console.logも表示されないです。
getElementById("セレクトボックスのID");
を指定function setSelectMonth()
はselectボックスのname="selectMonth"
を指定
なぜJavascriptが呼ばれないのか教えていただきたいです。
Javascript
function setSelectMonth(){ console.log("123");
var selectElement = document.getElementById("Month");
for(var i = 1; i <= 12; i ++){
var option = document.createElement("option");
option.value = i;
option.innerText = i;
selectElement.appendChild(option);
}
}
HTML
<form>
<table>
<tr>
<th>年度</th>
<select name="selectMonth" style="width: 40%;" id="select">
</select> 月<script th:src="@{/js/js}" id="Month"></script></td>
</tr>
</table></form>