o缘来是你o
2017-03-03 14:43
//点击更新次数
$("button:first").click(function(event,bottonName) {
bottonName = bottonName || 'first';
update($("span:first"),$("span:last"),bottonName);
});
自定义的函数,传三个值过来,函数内实现 点击次数的增加
function update(first,last,bottonName) {
first.text(bottonName);
var n = parseInt(last.text(), 10);
last.text(n + 1);
}
jQuery基础(三)—事件篇
89997 学习 · 625 问题
相似问题