Windows 8 IE 浏览器我无法阻止双击。
$('#id').click(function (el)
{
if (!el.detail || el.detail == 1)
{
$.ajax({
...........
});
}
});
上面的代码在 Windows XP 和 Windows 7 中运行良好,以防止双击。但在 Windows 8 中不支持“el.detail”。请帮我解决这个问题。