2014-03-07 84 views

回答

1

你可以看爲ListView內部檢查的項目像這樣的例子:

$('[data-role="listview"] :radio:checked').map(function() { 
    if (this.checked == true) { 
    console.log($(this).closest('label').text()) 
    } 
}); 
相關問題