jQueryとの動作の違いを確認するため、テスト用のスクリプトはjQueryのAPI Referenceを参考にしています。
function countChecked(evt) {
var n = uu.attr("input[:checked]").length;
uu.id("result").innerText = (n + (n == 1 ? " is" : " are") + " checked!");
}
uu.attr('input[@type="checkbox"]').forEach(function(v) {
uu.event.set(countChecked, v, "click");
});