このコードの下に、私が望むとおりに機能するコードがあります。別の .js ファイルに移動する方法を知りたいだけです。申し訳ありませんが、私はこれが初めてです。
だから私がほとんど求めているのは、HTMLドキュメント http://jsfiddle.net/BgWjv/でこのコードを呼び出す方法です
HTML:
<select id="selectday">
<option>Day</option>
<script>
var select = document.getElementById("selectday");
var options = new Array();
var temp = 1;
for(var i = 0; i < 31; i++) {
options.push(temp);
temp++;
}
for(var i = 0; i < options.length; i++) {
var opt = options[i];
var el = document.createElement("option");
el.textContent = opt;
el.value = opt;
select.appendChild(el);
}
</script>
</select>