jQuery绑定事件
2021-03-28 16:25
标签:use src hang this com 技术 ack UNC text jQuery绑定事件 常用事件:click:左键点击事件、hover:鼠标悬浮事件、 blur:失去焦点事件、 focus:获取光标事件、 change: 与内容发生改变时事件、keyup: 、mouseover: 、mouseenter:。 jquery绑定事件的两种方式: 方式一: 方式二: jQuery绑定事件 标签:use src hang this com 技术 ack UNC text 原文地址:https://www.cnblogs.com/zhangrenguo/p/12617153.html $(‘#d1‘).click(function () {
// $(this).css(‘background-color‘,‘red‘);
$(this).css({‘background-color‘:‘red‘});
});