我正在尝试在文本框的按键事件上对齐页面中心的文本框,但我只能使用下面给出的代码放大文本框的大小...
<title></title>
<script type="text/javascript">
function resize(selectObj) {
selectObj.style.height = '400px';
selectObj.style.width = '800px';
selectObj.style.padding = '10px 10px 10px 10px';
selectObj.style.position = 'absolute';
}
</script>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txt" runat="server" TextMode="MultiLine" onkeypress="resize(this);">
</asp:TextBox>
</div>
</form>
</body>
</html>