私はこのコードを持っています:
<select>
<option onChange="filterProducts(this);">Select ...</option>
<option onChange="filterProducts(this);">Samsung</option>
<option onChange="filterProducts(this);">LG</option>
<option onChange="filterProducts(this);">Sony</option>
<option onChange="filterProducts(this);">Philips</option>
</select>
これはjsメソッドを起動するはずですが、単に起動しません:
function filterProducts(firedByControl){
alert(fired);
}
このボタンの場合、同じjsメソッドを呼び出すと、すべてうまく機能します。
<button type="button" class="btn" onclick="filterProducts(this)" value="LCD">LCD</button>
どこが間違っているのか教えていただけますか?