这段代码有什么问题?
$(document).on("click",".item-from-list",function(){
工作正常。但在我使用navigator.replacePage()之后;它触发我使用replacePage()的同一时间; 例如: 我有一个用户选择一天的按钮,它返回数据。 当用户更改日期时,它使用navigator.replacePage();然后是问题。现在,如果用户点击列表项,它会在用户更改当天的同一时间触发事件。
HTML:
<div ng-controller="ListController">
<ons-gesture-detector id="gd">
<ons-carousel>
<ons-carousel-item>
<div class="item-label">
<ons-scroller>
<ul class="list-i">
<li ng-repeat="data in itens" class="item-from-list">
我尝试使用$(element).click(function);但它没有奏效。 有人能帮助我吗?