我是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>
答案 0 :(得分:1)
尝试使用$()。ready函数。
像
$(document).ready(function() {
$("#total").keyup(function() {
$("#total2").val($("#total").val());
});
});
阅读本文: https://learn.jquery.com/using-jquery-core/document-ready/