SOURCE

console 命令行工具 X clear

                    
>
console
//设置默认score
$('#star1').bhStar({
    score: 3
});

//设置星星size
$('#star2').bhStar({
    size: 30
});

//设置单位
$('#star3').bhStar({
    text: 'Vote'
});

//给星星和文字添加自定义样式类
$('#star4').bhStar({
    starClass: 'cls-star',
    textClass: 'cls-text'
});

//隐藏数字
$('#star5').bhStar({
    isShowNum: false
});

$('#star6').bhStar();

$("#star7").bhStar({
    score: 2, //可选,设置分数,默认是0
    size: 0, //可选,设置星的大小,单位按像素计算
    isShowNum: true, //可选,是否显示数字,默认显示
    text: '分', //可选,在分数后面显示的文字,默认是“分”
    textClass: 'abc', //可选,给分数添加样式类
    starClass: 'star',
    readonly: true
});

$('.e2e-opt').on('click', 'button', function () {
    $('mark').html($('#star6').bhStar('getScore'));
});
<h3 class='bh-mt-16'>设置默认score</h3>
<div id="star1"></div>
<h3 class='bh-mt-16'>设置星星size</h3>
<div id="star2" class='bh-mt-8'></div>
<h3 class='bh-mt-16'>设置单位</h3>
<div id="star3" class='bh-mt-8'></div>
<h3 class='bh-mt-16'>给星星和文字添加自定义样式类</h3>
<div id="star4" class='bh-mt-8'></div>
<h3 class='bh-mt-16'>隐藏数字</h3>
<div id="star5" class='bh-mt-8'></div>
<h3 class='bh-mt-16'>获取评分</h3>
<div id="star6" class='bh-mt-8 bh2-pull-left'></div>
<h3 class='bh-mt-16'>只读评分</h3>
<div id="star7" class='bh-mt-8 bh2-pull-left'></div>

<div class="e2e-opt">
    <button data-action="getScore">获取当前评分</button>
</div>

<mark>
    返回状态
</mark>
#wrap{
  margin: 16px;
}