其实我是javascript的新手,我想在另一个textarea中显示一个textarea写的文字。
我确实提到了问题Simultaneously write text from one Textarea to another Textarea
我在jsfiddle中看到它,但我不理解如何合并此代码。
我现在已经走了这么远:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<script src="text/javascript">
$(document).ready(function() {
// put your Javascript here
$('.one').on('keydown', function(event){
var key = String.fromCharCode(event.which);
if (!event.shiftKey) {
key = key.toLowerCase();
}
$('.two').val( $(this).val() + key );
});
});
</script>
<textarea class="one"></textarea>
<textarea class="two"></textarea>
</body>
</html>
我不明白这是什么问题。