<script type="text/javascript">
$(function(){
$('#example')[0].onmouseover = function(event) {
alert("something");
};
});
</script>
<body>
<img id="example" src="example.jpg" " alt="ooooh! ahhhh!"/>
</body
爲什麼我們需要[0]背後例如ID?
如果我們刪除[0],爲什麼它不工作?