我正在使用 jRating 在 http://www.myjqueryplugins.com/jquery-plugin/jrating上找到的星级
在同一页面上,它们具有您可以随意配置的选项。除了我正在寻找的一个。
我喜欢为某些图像设置一个默认值,比如 1、2 或 5 星评级。我怎么能这样做?我正在使用 jQuery 和 ajax 或 xml 从服务器获取数据并将其分配给我找不到的选项。我对php一无所知,所以他们的例子根本没有帮助。任何帮助都会很棒。谢谢你。
<script type="text/javascript">
$(document).ready(function(){
$(".exemple2").jRating({
rateMax: 5,
showRateInfo: false,
isDisabled:true,
value: 3,<----------- option like this is not available how can I can do this
length : 5 // nb of stars
});
});
</scrip>
<!-- basic exemple -->
<div class="exemple">
<!-- in this exemple, 12 is the average and 1 is the id of the line to update in DB -->
<div class="exemple2" id="12_1"></div>
<!-- in this other exemple, 8 is the average and 2 is the id of the line to update in DB -->
<div class="exemple2" id="8_2"></div>
</div>