苹果手机点击延迟问题

将click替换成

var content = document.querySelector("#vote");
    content.addEventListener("touchend", function () {
        vote();
    });

原文地址:https://www.cnblogs.com/danlis/p/5707197.html