2

我有一个列表视图点击事件:http: //jsfiddle.net/w2JZU/260/

$('#todayvalue').children('li').on('click', function () {
    var selected_index = $(this).attr('id');
    alert('Selected Index = ' + selected_index);
});​

此方法在 jquery mobile 上运行良好。但是当我将它部署到 PhoneGap javascript 文件时,会出现此错误。

4

2 回答 2

6

on在 2011 年 11 月的 v1.7 中引入了 JQuery。它还没有出现在 JQuery Mobile 中。

于 2012-04-13T02:55:52.623 回答
0

尝试

$('#todayvalue').children('li').click(function () {
var selected_index = $(this).attr('id');
alert('Selected Index = ' + selected_index);
});​

.on 在您的 jQuery mobile 版本上可能不可用。

于 2012-04-13T01:58:04.373 回答