当前输入值不显示在另一个输入值中

时间:2015-10-04 22:58:04

标签: jquery

我是jquery的新手 当我使用的代码没有工作 哪里有错误

<html>
    <head>
        <meta charset="UTF-8">
        <script src="//code.jquery.com/jquery-1.10.2.js"></script>
        <script >
            $("#total").keyup(function() {
                $("#total2").val($("#total").val());
            });
        </script>
    </head>
    <body>
    <tr>
        <td><input id="total" type="text" ></td>
        <td><input id="total2" type="text" ></td>
    </tr>
</body>

1 个答案:

答案 0 :(得分:1)

尝试使用$()。ready函数。

$(document).ready(function() {
   $("#total").keyup(function() {
     $("#total2").val($("#total").val());
   }); 
});

阅读本文: https://learn.jquery.com/using-jquery-core/document-ready/