Link 未在移动设备上点击

Link is not clicked in mobile

我为我的球员建立了一个建议按钮,您可以实时查看 here。它可以在我最好的朋友的 iPhone 中使用,并且由于我没有现代手机,所以它可以在我的浏览器的设备模式下使用,但是它没有列出似乎有问题的特定设备。使用 android 的用户报告说它也在那里工作!

我正在使用 jQuery 手机,当使用 Chrome 浏览器时,问题出现在 Samsung galaxy s3 neo 中。

HTML是:

<a id="search_btn" data-role="button" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-icon-search ui-btn-icon-left">Show me the players</a>

和 JS:

$(window).load(function() {
    ...
    $("#search_btn").click(function(){
        alert("marievi leeeme!"); // that user can not even see this!
        var slot = 0;
        ...

有什么想法吗?我不知道。可能是因为我使用的是 a 标签而不是真正的按钮?

尝试:

$(document).ready(function(){
     var self = this;
     $("#search_btn").click(function(){
        self.alert("marievi leeeme!"); // that user can not even see this!
        var slot = 0;
     });
});