摘要: 取消标签自带的事件 return false $('button').on('click',function () { console.log(this) }) this指代的是当前被操作对象(并且是原生的js对象) $('button').on('click',function () { $(this).clone().inser... 阅读全文