我有一个代码,通过它我可以增加文本区域中的文本大小,我可以通过给定的代码执行此操作,但这是我的一个问题,当增加文本大小时,它也会增加文本的大小区域,我不想要这个,也想让文本区域可滚动
代码如下:
<HTML>
<head>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function () {
$('select[name="font"]').on('change', function () {
$('textarea').css('font-family', this.value);
});
});
</script>
</head>
<body>
Select Programming font:
<select name="font">
<option value="arial">arial black</option>
<option value="tahoma">tahoma</option>
<option value="times new roman">times new roman</option>
<option value="calibri">calibri</option>
</select>
<select onchange="$('#txt').css('font-size', event.target.value + 'px')">
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
</select>
<br>EnterValue:
<textarea id="txt" rows="4" cols="50">Test Test</textarea>
</body>
</html>
答案 0 :(得分:2)
使用CSS为您的textarea提供特定尺寸。然后,您可以将overflow属性设置为auto,这将使浏览器自动呈现适当的滚动条:
#txt{
height:40px;
width:200px;
overflow:auto;
}
答案 1 :(得分:0)
将css resize:none;overflow:auto;width:100px;height:50px
与textarea一起使用
<textarea id="txt" rows="4" cols="50" style="resize:none;overflow:auto;width:300px;height:50px">Test Test</textarea>
答案 2 :(得分:0)
<textarea id="txt" rows="4" cols="50" style="width:400px;height:100px">Test Test</textarea>
答案 3 :(得分:0)
您可以在更改字体大小之前获取textarea
的宽度和高度,然后将其重新设置为textarea
:
$(function () {
var width = $('textarea').width(),
height = $('textarea').height();
$('select[name="font"]').on('change', function () {
$('textarea').css('font-family', this.value);
$('textarea').width(width);
$('textarea').height(height);
}).change();
});
此解决方案不要求您为textarea
<强> Fiddle Demo 强>