1

使用可折叠集,您可以使用一些属性来定义可折叠项的各种状态中的图标,例如:

data-collapsed-icon="arrow-down"  data-expanded-icon="arrow-up"

有谁知道 listview 小部件是否有类似的属性可用?当列表视图项设置为活动时,我想设置一个属性以使用特定图标。

4

1 回答 1

2

I'm not sure whether such attributes like collapsible's but, you can do like this:

$('#yourpage').live('pagebeforeshow',function(e,data){    
    $("li").tap(function() {
        $(this).buttonMarkup({ icon: "myicon" });
    });  
});
于 2013-04-27T21:50:21.740 回答