看看这里(它使用 jquery、knockoutjs、twitter bootstrap 3):
<i class="glyphicon" data-bind="click: function() { isPaused(!isPaused()) }, css: {'glyphicon-play': isPaused(), '.glyphicon-pause': !isPaused()}"></i>
var viewModel = {
isPaused: ko.observable(true),
};
ko.applyBindings(viewModel);
当我点击播放图标时,图标消失。相反,该图标应该变成暂停图标。怎么了?我使用最新的 Chrome。