在JavaScript中,我有这个测试'ontouchstart' in document.documentElement
。如果事件存在(即使为 null),则计算结果为 true
否则为 false
。我不知道如何在CoffeeScript中做等效的事情。完全按原样编写它意味着使用不做同样事情的 __indexOf
函数(它总是返回 false)。
您还可以尝试'onmousemove'
始终存在的事件。
改用of
:
'ontouchstart' of document.documentElement
从文档:
您可以使用
in
来测试阵列是否存在,并使用of
来测试 JavaScript 对象键存在。