我正在尝试的是在您输入文本或在其中粘贴一些文本时使 Textarea 自动增长。它适用于 IE7、IE8 和 IE9、Firefox。但是,在 OPERA、CHROME 和 SAFARI 中,即使我单击功能键/附加键(如 Shift、Ctrl、向下箭头、向上箭头、向左箭头、向右箭头、Home、End、Delete 等),它也会自动增长。
查询代码:
<script type="text/javascript">
function txtareaAutoGrow(txtar, clkBtn){
// txtareaAutoGrow() start here
$("#"+txtar).height(18);
$("#"+txtar).keyup(function(){
if ($("#"+txtar).height() <= 18){
$(this).height(18);
}
else {
$(this).height($("#"+txtar).prop("scrollHeight"));
$("#"+txtar).bind('paste', function() {
setTimeout(function() {
$("#"+txtar).height($("#"+txtar).prop("scrollHeight"));
}, 100);
});
}
});
$("#"+clkBtn).click(function(){
if ($("#"+txtar).height() <= 18){
$("#"+txtar).height($("#"+txtar).prop("scrollHeight"));
}
else {
$("#"+txtar).height(18);
}
});
// txtareaAutoGrow() end here
};
</script>
HTML 代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Auto Resize TEXTAREA</title>
<style type="text/css">
textarea {
overflow:hidden;
resize: none;}
</style>
<script type="text/javascript" src="jquery-latest.js"></script>
<script type="text/javascript" src="autoresizeTextarea.js"></script>
<script type="text/javascript">
$(document).ready(function() {
txtareaAutoGrow("txtar1", "btnXpand1");
txtareaAutoGrow("txtar2", "btnXpand2");
});
</script>
</head>
<body>
<p>
<textarea cols="100" id="txtar1"></textarea>
<input type="button" id="btnXpand1" value="Expand/Collapse" />
<p> </p>
<textarea cols="100" id="txtar2"></textarea>
<input type="button" id="btnXpand2" value="Expand/Collapse" />
</p>
<p>
<!--<input type="button" id="Heght" value="Height" />
<input type="button" id="scrlHeight" value="Scroll Height" />
<input type="button" id="btnXpand" value="Expand/Collapse" />-->
</p>
</body>
</html>