このプラグインhttp://www.fyneworks.com/jquery/star-rating/#tab-Testingを使用しています。星がクリックされたかどうかを判断するクライアント側の検証システムを作成しようとしていました。私はあなたがそれを行うことができるか疑問に思っていました。
私のjavascriptファイルには、
$('#star1').click(function (){
document.getElementById('star1').checked=true;
return false;
});
私はラジオボタン型の星を使用しており、次のようなhtmlコードを持っています。
<input id="star1" name="star1" type="radio" class="star" value="1"/>
<input id="star1" name="star1" type="radio" class="star" value="2"/>
<input id="star1" name="star1" type="radio" class="star" value="3"/>
<input id="star1" name="star1" type="radio" class="star" value="4"/>
<input id="star1" name="star1" type="radio" class="star" value="5"/>
しかし、これはうまくいかないようです。