我如何使用 Meteor + Blaze 执行以下操作和/或为什么这不起作用?
代码做/不做下面所说的
// client...
$(document).ready(function () {
console.log("this logs...");
$('a.external').each(function () {
console.log("this doesn't log");
$(this).attr('title', 'External Link');
});
});