有两个具有完全相同的文本格式的文本区域。 ID为textareaAtextareaB

我为textareaA设置了一些设置。我的问题是在用户输入textareaB时如何设置textareaA来调整其宽度?

这是我尝试过的,但是没有运气。

$(document).on("click blur keyup", ".fT", function() { // keyup responds with textareaA
        var newWidth = $("#textareaA").val(); //does not work
        $("#textareaB").width(newWidth);
});

最佳答案

使用.css("proprety", "value") JQuery方法执行此操作。

用法:

$(document).keyup(function(event)) {
    $("#textareaB").css("width", "1000px");
});


用法(带变量):

var myVariable = 1000; /* integer here */

$(document).keyup(function(event)) {
    $("#textareaB").css("width", myVariable.toString() + "px");
});

09-25 16:31