慕粉2340472005
2016-11-26 16:33
function fn(e) {
$(this).val(e.data)
}
function a() {
$("input:last").focusout('慕课网', fn)
}
a();
function fn(e) { //fn 是函数名称,e是该函数的参数 $(this).val(e.data)//this指的是当前函数,就是fn函数,val是值,e.data就告诉计算机要传入是什么 } function a() { //函数a $("input:last").focusout('慕课网', fn) //最后一个输入框input触发事件“失去焦点"调用了函数fn ,然后传入了参数‘慕课网’ } a(); //执行a函数
jQuery基础(三)—事件篇
89997 学习 · 625 问题
相似问题