随笔分类 - jQuery
摘要:事件注册单个事件注册语法: $('div').click(function () { 处理的事情 })$('div').click(function () { $(this).css('backgroundColor', 'red') });$('div').mouseenter(function () { $(this).css('backgroundColor', 'black') ...
阅读全文
摘要:属性操作固定属性 prop()获取固定属性$("a").prop("href") 2. 设置属性$('a').prop("title", '我们')注意:prop 更加适用disabled / checked / selected 等。自定义属性 attr()获取自定义属性$('div').attr('index') 2. 设置自定义属性$('span').attr('inde...
阅读全文
摘要:jquery使用jQuery的官网地址: https://jquery.com/,官网即可下载最新版本。 Title jq基本使用JQ对象和DOM对象相互转换DOM对象转换为JQ对象var jQueryObject = $(DOM)JQ对象转换为DOM对象jQuery对象[索引值]jQuery对象.get(索引值) Title 示例代码jQuery...
阅读全文