gpt4 book ai didi

javascript - 如何在 ASP.NET 的 TextBox 输入中添加连字符?

转载 作者:行者123 更新时间:2023-12-02 16:34:22 26 4
gpt4 key购买 nike

我有一个 ASP.NET 文本框,如果输入的长度 > 5,我想在文本框输入中添加连字符。例如,如果我键入 123456789,则该条目应显示如下:12345-6789

如何做到这一点?

<asp:Button ID="Button1" runat="server" Text="Button" />

最佳答案

$('.phone').on('input', function() {
this.value.length < 5 || this.value.charAt(5) == '-' ||
$(this).val( [this.value.slice(0,5), '-', this.value.slice(5)].join('') );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="text" name="phone" class="phone"/>

关于javascript - 如何在 ASP.NET 的 TextBox 输入中添加连字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28048437/

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