有两个具有完全相同的文本格式的文本区域。 ID为textareaA
和textareaB
。
我为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");
});