我觉得$("ul").on('click',function(e){
alert('触发的元素是内容是: ' + e.target.textContent)
})
等价于
$("ul").on('click',"li",function(e){
alert('触发的元素是内容是: ' + e.target.textContent)
})
alert('触发的元素是内容是: ' + e.target.textContent)
})
等价于
$("ul").on('click',"li",function(e){
alert('触发的元素是内容是: ' + e.target.textContent)
})
2017-05-23
最赞回答 / 淡水狗
trigger功能可以用在表单填写的功能上,比如填写出错的时候自动弹出窗口提醒。或者打开一个页面时需要设置弹窗功能。例如: $('body').on('click',function(e){ alert('事件类型' + e.type); e.preventDefault() }); $('body').trigger('click')
2017-05-22
on方法不懂去菜鸟联盟看看 其实on方法是一个取代多个事件合集 可以处理基本事件 也可以处理今后添加事件 还可以自定义事件 取消事件用off 只执行一次用one方法
2017-05-18
$('p').mouseenter(function a() {
$(this).css("background", 'red');
})
$('p').mouseleave(function b() {
$(this).css("background", '#bbffaa');
})
$("p").hover(a,b);
$(this).css("background", 'red');
})
$('p').mouseleave(function b() {
$(this).css("background", '#bbffaa');
})
$("p").hover(a,b);
2017-05-17
可爱的暮友们:
你们既然发现课讲的越来越多的瑕疵与劣质,
那还等什么呢?赶紧去购买收费课程呀!
要知道我们是循序渐进促使你们消费呀!
你们既然发现课讲的越来越多的瑕疵与劣质,
那还等什么呢?赶紧去购买收费课程呀!
要知道我们是循序渐进促使你们消费呀!
2017-05-16
$(".aaron:first").on('mousedown ', function(e) {
$(this).text( '触发类型:' + (e.type) + ",次数" + (n+1))
})
$(".aaron:first").on(' mouseup', function(e) {
$(this).text( '触发类型:' + (e.type) + ",次数" + (n+1))
++n;
})
$(this).text( '触发类型:' + (e.type) + ",次数" + (n+1))
})
$(".aaron:first").on(' mouseup', function(e) {
$(this).text( '触发类型:' + (e.type) + ",次数" + (n+1))
++n;
})
2017-05-16
测试3
var n=0
function movedata(e){
if(n==0)
$('.aaron2 a').append('<span></span>');
$('.aaron2 span').html((++n)+'<br>'+'data is:'+e.data);
}
$('.aaron2 p').mouseover('我是数据啊',movedata);
var n=0
function movedata(e){
if(n==0)
$('.aaron2 a').append('<span></span>');
$('.aaron2 span').html((++n)+'<br>'+'data is:'+e.data);
}
$('.aaron2 p').mouseover('我是数据啊',movedata);
2017-05-16
经过测试,本题中的e可以改为其他名字,不影响代码运行,印证了函数运行结束后,时间对象被销毁的结论。
在这道题中是不是可以理解为这个e就代表冒泡事件的起始点(li),同时e也能返回冒泡点(li)的信息。不知道这么理解对不对?
在这道题中是不是可以理解为这个e就代表冒泡事件的起始点(li),同时e也能返回冒泡点(li)的信息。不知道这么理解对不对?
2017-05-15