发布网友
共1个回答
热心网友
jQuery插件做的
大概这样:
$(document).ready(function(){
$("img").bind("mouseover",function(){
this.width("50px");
this.height("50px");
});
});