标签: javascript jquery
我们说我有一个选择框
<select id="cartoons'> <option>Pogo</option> <option>Cartoon network</option> </select>
我试图将鼠标中心事件添加到第二个选项中,如此
$("#cartoons").children().last().on("mouseenter", function () { alert("Hello world"); });
但它没有用。小提琴here。