0

このプラグイン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"/>

しかし、これはうまくいかないようです。

4

2 に答える 2

1

実際のデモ http://jsfiddle.net/2xTwb/

それがあなたの原因に合うことを願っています:)

スクリプト

  <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>

      <script type='text/javascript' src="http://jquery-star-rating-plugin.googlecode.com/svn/trunk/jquery.rating.js"></script>

      <link rel="stylesheet" type="text/css" href="http://jquery-star-rating-plugin.googlecode.com/svn/trunk/jquery.rating.css">

コード

$(".voting-star[value='3']").attr("checked", true);

$('.voting-star').rating({
    callback: function(value, link) {
        alert(value);
    }
});
​
于 2012-08-06T03:40:20.977 に答える
0

.propメソッドを使用してプロパティを確認できcheckedます。

$('.star').click(function (){
   if ($(this).prop('checked')) {
     //...
   }
   return false;
});
于 2012-08-06T03:40:12.660 に答える