我正在使用fast click,并通过以下方式将其应用于身体:
FastClick.attach(document.body);
我如何不将其应用于像这样的元素:
<div class="item">My El</div> -- Do not apply fastclick to this element
更新
Missed the doc which tells how to
最佳答案
如果将“ needsclick”类添加到元素,则fastclick不会尝试执行其特殊功能。
<div class="item needsclick">My El</div>
关于javascript - 如何从特定元素中删除fastclick?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28216483/