【小程序】小程序星星评分

【小程序】小程序星星评分

想实现这么个星星评分,不需要有半颗星的

<view class="evaluate">
<image bindtap="starScore" src="https://segmentfault.com/q/1010000010391104/{{starSrc}}" data-id="1"></image>
<image bindtap="starScore" src="https://segmentfault.com/q/1010000010391104/{{starSrc}}" data-id="2"></image>
<image bindtap="starScore" src="https://segmentfault.com/q/1010000010391104/{{starSrc}}" data-id="3"></image>
<image bindtap="starScore" src="https://segmentfault.com/q/1010000010391104/{{starSrc}}" data-id="4"></image>
<image bindtap="starScore" src="https://segmentfault.com/q/1010000010391104/{{starSrc}}" data-id="5"></image>
</view>

Page({
data: {
starSrc: '../../images/star.png',
starSrcActive: '../../images/star_active.png',
score:[]
},
starScore: function (e) {
console.info(e.target.dataset.id );
}
});

求给个思路,用JQ很好实现,当程序" title="小程序">小程序不知道应该怎样去做,有没有大神能教教

回答

网上教程
http://www.wxappclub.com/topi...
http://www.see-source.com/wei...

以上是 【小程序】小程序星星评分 的全部内容, 来源链接: utcz.com/a/83895.html

回到顶部