苹果手机点击延迟问题
将click替换成
var content = document.querySelector("#vote");
content.addEventListener("touchend", function () {
vote();
});
fighting
将click替换成
var content = document.querySelector("#vote");
content.addEventListener("touchend", function () {
vote();
});