gpt4 book ai didi

c# - 在按键事件中将 TextBox 对齐到页面中间

转载 作者:行者123 更新时间:2023-11-30 17:49:58 26 4
gpt4 key购买 nike

我试图在文本框的按键事件中将文本框对齐到页面的中心,但我只能使用下面给出的代码放大文本框的大小...

<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>

最佳答案

你可以这样做

$( "#txt" ).keypress(function() {
$("#maindiv").css({'display' : 'block', 'text-align' : 'center'});
});

Demo Fiddle

屏幕中心更新

$( "#txt" ).keypress(function() {
$(this).css('margin-left', ($(window).width() / 2));
});

Demo Fiddle Center of screen

关于c# - 在按键事件中将 TextBox 对齐到页面中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19239749/

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