绑定到keyup
事件时,您会注意到延迟。当您通常绑定到keydown
事件时,文本区域的值尚未更改,因此在确定keydown
事件期间按下的键之前,您无法更新第二个文本区域的值。幸运的是,我们可以使用String.fromCharCode()
将新按下的键附加到第二个文本区域。这一切都是为了使第二个文本区域快速更新而没有任何延迟:
$('.one').on('keydown', function(event){
var key = String.fromCharCode(event.which);
if (!event.shiftKey) {
key = key.toLowerCase();
}
$('.two').val( $(this).val() + key );
});
这是一个演示:http: //jsfiddle.net/agz9Y/2/
这将使第二个文本区域与第一个具有相同的内容,如果您想将第一个文本区域的内容附加到第二个文本区域,您只需将第一个文本区域的值添加到第二个文本区域而不是覆盖:
$('.one').on('keydown', function(event){
var key = String.fromCharCode(event.which);
if (!event.shiftKey) {
key = key.toLowerCase();
}
$('.two').val( $('.two').val() + $(this).val() + key );
});
这是一个演示:http: //jsfiddle.net/agz9Y/3/
更新
您可以稍微更改一下,以便.two
元素记住自己的值:
$('.one').on('keydown', function(event){
var key = String.fromCharCode(event.which);
if (!event.shiftKey) {
key = key.toLowerCase();
}
//notice the value for the second textarea starts with it's data attribute
$('.two').val( $('.two').data('val') + ' -- ' + $(this).val() + key );
});
//set the `data-val` attribute for the second textarea
$('.two').data('val', '').on('focus', function () {
//when this textarea is focused, return its value to the remembered data-attribute
this.value = $(this).data('val');
}).on('change', function () {
//when this textarea's value is changed, set it's data-attribute to save the new value
//and update the textarea with the value of the first one
$(this).data('val', this.value);
this.value = this.value + ' -- ' + $('.one').val();
});