3
我目前使用addEventListener
上select
:如何從事件中獲取原始元素?
<select>
<option value="Apple">Mac</option>
<option value="Microsoft">Windows</option>
</select>
document.querySelector("select").addEventListener("change",function(ev){
//do something here...
}, false);
但我無法弄清楚如何從event
得到原始元素。
PS:我不想這樣做:
<select onchange="func(event,this)">
這隻會搞亂了HTML ...
非常感謝!哇...我沒有想到我可以在那裏使用'this' ... –