摘要: 引入CSS $('input[type="text"]').blur(function () { $('#div1').css('color','yellow')//单行css样式 $('#div1').css({//多行css样式 'color':'red', 'background':'ligh 阅读全文
posted @ 2021-12-18 21:48 KimiRaikkonen 阅读(45) 评论(0) 推荐(0)
摘要: jQuery事件处理 1.on(events,[selector],[data],fn ) 括号内可接元素和事件 $('#div1').on('click',function () { console.log('move') }) $('#div1').on('mousedown',function 阅读全文
posted @ 2021-12-18 21:43 KimiRaikkonen 阅读(68) 评论(0) 推荐(0)