1

一个简单的代码...

此代码位于 html 头标签内。jquery-mobile 和 jQuery 的包含是正确的。

$(document).ready(function() {           
    $("a").click(function () {       
       var t = $(this).attr('href');
    });
});

但不适用于 webview IOS,但在 Chrome 中可以正常工作。

4

2 回答 2

1

尝试vclick事件:

$(document).ready(function() {
    $("a").vclick(function (){        
       var t = $(this).attr('href');
    });
});
于 2012-05-07T08:59:45.090 回答
0

还没有真正检查过,但clickiOS 中的事件的处理(和行为)与桌面对应物有点不同。

试过这个吗?

于 2012-05-07T08:57:12.597 回答