3

次のコードは jsfiddle では機能しますが、localhost では機能しません。

<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
    <script>
        $('.puankontrol').change(function() {
          var x = $(this).val() * 1;   
          if((x < 1) ||  (x > 5))
          {
              $(this).val(3);
              alert("Please enter value between 1-5!");
          }
        });
    </script>
</head>
<body>

     <form>
      <input class="puankontrol" type="text" name="puan"/><BR>
      <input class="puankontrol" type="text" name="puan"/><BR>
      <input class="puankontrol" type="text" name="puan"/><BR>
    </form>
    <div id="other">
      Trigger the handler
    </div>

</body>
</html>

`

4

2 に答える 2

7

試す

$(document).ready(function(){
   //change function declaration.
});

タグ<script type="text/javascript">の追加にも使用します。script

于 2013-02-25T12:23:24.020 に答える
0

jQuery でコードを書きたいときはいつでも、そのコードを

$(document).ready(function(){});

ドキュメントのすべての要素が読み込まれると、jQuery はこのメソッド コールバックを呼び出します。そして、この内部でアクセスしているすべての要素がロードされていることを確認します。

于 2013-02-25T12:37:34.920 に答える