是否可以在淘汰绑定声明中使用 jquery?例如,我试图通过单击“全部”复选框来选择一组复选框。这就是我试图声明点击绑定的方式:
selectAll.bind($parent, $(this).is('checked'))
但这似乎不起作用。我在 Chrome 中收到以下异常:
Uncaught Error: Unable to parse bindings.
Message: TypeError: Cannot call method 'toLowerCase' of undefined;
Bindings value: click: $parent.selectAllFacets.bind($parent, $(this).is('checked'))
这可能吗?提前致谢。