文本框控件会根据asp.net中数据库的填充文本自动增加宽度
答案 0 :(得分:0)
试试这段代码,
<html>
<head>
<script type="text/javascript">
function Increse(obj){
if (!obj.s) obj.s=obj.size;
obj.size=Math.max(obj.s,obj.value.length);
}
</script>
</head>
<body>
<form>
<input type="text" size="5" style="font-family:Courier;" onkeyup="Increse(this);">
</form>
</body>
</html>
希望它能奏效。