gpt4 book ai didi

javascript - 自动调整文本区域宽度(cols)?

转载 作者:太空宇宙 更新时间:2023-11-04 15:34:50 25 4
gpt4 key购买 nike

我正在为用户制作一个网络应用程序来创建一个简单的组织结构图。我什至还没有连接节点的线,但我正在使用文本区域。我发现了一个非常有用的 autosize() 插件,它非常适合在占用宽度时添加额外的行。有没有办法让它在用户只使用一行时,自动调整大小会缩小宽度以环绕文本?

我试图弄清楚如何做 jsfiddle 但我不知道如何添加多个 javascript(用于插件)所以我将我的 jquery 代码放在插件的底部并将插件位于 jsfiddle 中的 javascript 区域

HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pathway Builder 2.0</title>
<link rel="stylesheet" href="PathwayBuilder2.css" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
<script src="PathwayBuilder2.js" type="text/javascript"></script>
<script src="plug-ins/autosize.js" type="text/javascript"></script>
</head>




<body>
<div id="Pathway">
<div class="whole">
<div class="text_display">
<textarea class="text_field_not_selected"></textarea><br />
<input type="button" class="add_child" value="+" />
</div>
</div>
</div>
</body>
</html>

javascript/jquery

$(document).ready(function() {
$('textarea').autosize();
});

$(document).ready(function() {
$('.add_child').live({
click: function() {
var new_child = '<div class="whole"><div class="text display"><textarea class="text_field_not_selected"></textarea><br /><input type="button" class="add_child not_visable" value="+" /></div></div>';
$(this).closest('.whole').append(new_child);
$('.text_field_not_selected').autosize();
}
});
});

$('textarea').live('focusin blur', function() {
$(this).toggleClass('text_field_not_selected');
});

CSS

body {
margin: 0px;
padding: 0px;
text-align: center;
}
#pathway {
display: block;
}
.whole {
text-align: center;
display: inline-block;
vertical-align: top;
margin-left: auto;
margin-right: auto;
padding: 10px;
}
textarea {
min-width: 2em;
text-align: center;
}
textarea:focus {
resize: none;
}
.text_field_not_selected {
resize: none;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
box-shadow: 0px 3px 5px #444;
-moz-box-shadow: 0px 3px 5px #444;
-webkit-box-shadow: 0px 3px 5px #444;
}
.add_child {
margin-bottom: 25px;
}

最佳答案

给你工作演示:http://jsfiddle.net/YVEhr/30/ (更贴切) http://jsfiddle.net/YVEhr/1/

如果这就是您想要的,请告诉我,我很乐意提供帮助。我花了一点时间才明白(即调整想法):)

编辑 好的,我现在明白了(Phew)请随意使用 css,或者您可以从“row=something”开始,我已经分享了一些链接以获得进一步的帮助。 :)

演示 http://jsfiddle.net/YVEhr/30/

调整文本区域以适应屏幕:好的链接:你也可以看看这个人:http://archive.plugins.jquery.com/project/TextFill

Jquery代码

//inital resize
resizeTextArea($('textarea'));

//resize text area
function resizeTextArea(elem){
// alert(elem[0].scrollHeight + ' ---- ' + elem[0].clientHeight);
elem.height(1);
elem.scrollTop(0);
elem.height(elem[0].scrollHeight - elem[0].clientHeight + elem.height());
}

//'live' event
$('textarea').live('keyup', function() {
var elem = $(this);
// alert('foo');
//bind scroll
if(!elem.data('has-scroll'))
{
elem.data('has-scroll', true);
elem.bind('scroll keyup', function(){
resizeTextArea($(this));
});
}

resizeTextArea($(this));
});

如果那是你想要的,请告诉我。

解释

只需要将新的 etxtreaclass 绑定(bind)到 .autosize() 函数,剩下的就可以在 jsfiddle 中看到了。

不要忘记接受答案,如果您愿意,可以在不使用任何插件的情况下使用此解决方案:jQuery - Building an AutoResizing TextArea that Doesn't Flash on Resize

任何人都可以,希望这对您有所帮助,祝您愉快,干杯!

JQuery 代码

$(document).ready(function() {

$('.add_child').live({
click: function() {
var new_child = '<div class="whole"><div class="text display"><textarea class="text_field_not_selected"></textarea><br /><input type="button" class="add_child not_visable" value="+" /></div></div>';
$(this).closest('.whole').append(new_child);
$('.text_field_not_selected').autosize();
}
});
});

关于javascript - 自动调整文本区域宽度(cols)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10117141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com