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 回答