链接不在ipad上使用jQuery

时间:2014-09-30 12:37:43

标签: jquery html ipad hyperlink

我有这个链接:

<a class="MultiFile-remove"> x</a>

和这个jQuery:

$(".fancybox").fancybox({
    width: 1200,
    height: 800,
    autoSize: false,
    'afterClose': function() {
        $('#imageName').val(value);
        if (value != "") {
            $('.bestand-naam').append(value + '<a class="MultiFile-remove"> x</a>');
            $('.right-text, .chooseFromGallery').hide();
        }
    }
});

    $(document).on('click', "a.MultiFile-remove", function() {
    $('.right-text, .chooseFromGallery').show();
    $('#imageName').val("");
    $(".bestand-naam").empty();
});

这工作正常,但在ipad上这似乎不起作用。 任何人都知道为什么它不在ipad上工作?

1 个答案:

答案 0 :(得分:0)

修正了这个添加到我的样式表:

a.MultiFile-remove{
cursor: pointer;}