结合样本Onsen UI Tabbar和Onsen UI Master-Detail

时间:2015-02-17 14:58:26

标签: javascript jquery onsen-ui

我在ons-tabbar中加载的页面中添加了ons-list-item。

基本上,我将Sample Onsen UI Tabbar和Onsen UI Master-Detail结合起来。

但是,添加后,Onsen UI Master-Detail的点击行为无效。

怀疑需要在app.js中进行一些更改,它指向...

  $(document).on('pageinit', '#detail-page', function() {
$('.item-title', this).text(currentItem.title);
$('.item-desc', this).text(currentItem.desc);
$('.item-label', this).text(currentItem.label);
$('.add-note-action-item', this).click(function () {
    alert('dummy message');
});

});

 $(document).on('pageinit', '#list-page', function() {
$('.item', this).on('click', function() {
    console.log("in list-page")
  currentItem = {
    title : $('.item-title', this).text(),
    desc : $('.item-desc', this).text(),
    label : $('.item-label', this).text()
  };

  app.navi.pushPage('detail.html');
});

});

0 个答案:

没有答案