标签:fun 事件处理 事件 post body func bind 绑定 col
绑定事件可以对键值对的方式添加事件
$(‘input‘).bind({ mouseover : function () { alert(‘移入‘); }, mouseout : function () { alert(‘移出‘); } });
绑定事件处理
原文地址:https://www.cnblogs.com/sunzhnan/p/8146275.html