在iPad / iPhone上发出mouseenter mouse leave

时间:2017-01-16 15:52:25

标签: jquery mouseevent

我正在使用 Wordpress 开发此website,您可以看到有一个内容表。

对于每一行,我设置了一个jQuery(document).ready(function ($) { $(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-2", function () { $('.A_E_1').toggle(); }); $(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-3", function () { $('.A_E_2').toggle(); }); }); jQuery脚本,用于在表格顶部切换不同的图像。

这适用于桌面设备(以及Android设备),但不适用于iPad / iPhone。

关于如何解决它的任何想法?

这是脚本的一部分:

jQuery(document).ready(function ($) {

    $(document.body).on("touchstart touchend", ".tablepress-id-1 .row-2", function () {
        $('.A_E_1').toggle();
    });

    $(document.body).on("touchstart touchend", ".tablepress-id-1 .row-3", function () {
        $('.A_E_2').toggle();
    });

});

我尝试的没有结果:

{{1}}

0 个答案:

没有答案