I have the following two javascript functions:
(我有以下两个javascript函数:)
1
(1)
showCountry()
2
(2)
showUser()
I would like to put them in external ".js" files
(我想把它们放在外部的“.js”文件中)
1
(1)
<a href="javascript:showCountry('countryCode')">countryCode</a>
2
(2)
<form>
<select name="users" onChange="showUser(this.value)">
<option value="1">Tom</option>
<option value="2">Bob</option>
<option value="3">Joe</option>
</select>
</form>
What is the correct syntax to call these functions?
(调用这些函数的正确语法是什么?)
ask by blsn translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…