<!DOCTYPE html>
<html>
<head>
<title>input 同步</title>
</head>
<body>
<input type="text" name="texdd" class="example-input">
<input type="text" name="texdd" class="example-input">
<input type="text" name="texdd" class="example-input-different">
</body>
<script type="text/javascript" src="jquery-2.2.1.min.js"></script>
<script>
var $inputs = $(".example-input");
$inputs.keyup(function() {
$inputs.val($(this).val());
});
</script>
</html>