1
getcountry()やsetcountry()などのように書かれた関数を持つjavascriptファイル(country.js)があります。getCountryにはすべての国のリストがあります。今私は、この機能を使用して、私のウェブページ上のコンボボックス内のすべての国を表示したいと考えています。しかし、私はhtmlセクションでこの関数を呼び出す方法はありません。htmlのselectタグでjavascript関数を呼び出しますか?
これはcountry.jsの一部が
------------------Country.js--------------------------
function _getCountries() {
}
function _setCountries() {
_countries.push({ CountryID: 1, Name: 'Germany' });
_countries.push({ CountryID: 2, Name: 'India' });
_countries.push({ CountryID: 3, Name: 'China' });
.................................................
}
を提出し、私はそのような何かをしようとしていますが、HTML部分には、この機能を使用する方法がわからないです。私はウェブ開発の新人です。
-------------HTML--------------------------
<div>
<select onchange="Country()">
//what to do in this section?
</select>
</div>
___________ javaScript__________________
function Country{
getCountries();
//what to do in this section?
}