是否可以创建一个没有必需值的 Knockout bindingHandler?
ko.bindingHandlers['superAction'] = {
init: function(...) { },
update: function(...) { }
};
例如,语法可能是:
<span data-bind="superAction"></span>
有一个可选值,所以偶尔可能是:
<span data-bind="superAction: myProperty"></span>
我只尝试了一个冒号,没有冒号,......它们都会导致运行时解析异常。