课程
/前端开发
/jQuery
/jQuery基础(三)—事件篇
$("button:last").click(function() { $("button:first").trigger('click','last'); });
2017-04-28
源自:jQuery基础(三)—事件篇 7-1
正在回答
我觉得是把"last"作为参数,传给了第一个按钮的click事件里面的bottonName
$("button:first").click(function(event,bottonName) { bottonName = bottonName || 'first'; update($("span:first"),$("span:last"),bottonName); });
慕用9244143 提问者
举报
jQuery第三阶段开启事件修炼,掌握对页面进行交互的操作
3 回答on函数中的第一个参数“Aaron”是什么意思?
3 回答为什么input tigger focus事件传参不生效?
5 回答e.date是什么意思啊?e不是函数date里面的形参吗
2 回答e.type是什么意思?
2 回答e.data是什么意思?