我曾经有过这样的电话:
var link = $('<a />', { 'class': 'prop' + index, title: elt, text: elt });
link.on('click', switchLabel);
如下switchLabel
:
function switchLabel(e) {
$('#' + this.className.replace('prop','corr')).text(this.title);
}
我刚刚意识到this
很难理解它在 javascript 中指的是什么,所以我替换为:
function switchLabel(e) {
var source = e.currentTarget;
$('#' + source.className.replace('prop','corr')).text(source.title);
}
我对么?请为您的答案添加一些解释,我们(js noobs)可以学习。