gpt4 book ai didi

javascript - 链接在手机上没有被点击

转载 作者:行者123 更新时间:2023-11-28 06:38:41 24 4
gpt4 key购买 nike

我为我的球员建立了一个建议按钮,您可以实时查看 here .它可以在我最好的 friend 的 iPhone 上使用,因为我没有现代手机,所以它可以在我兄弟的设备模式下使用,但是它没有列出似乎有问题的特定设备。使用 android 的用户报告说它也可以在那里工作!

我正在使用 jQuery mobile,当使用 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;
});
});

关于javascript - 链接在手机上没有被点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34474435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com