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