gpt4 book ai didi

javascript - 无法在输入文本中添加空格

转载 作者:行者123 更新时间:2023-11-28 19:04:00 24 4
gpt4 key购买 nike

您好,我有以下代码,有人知道如何修改它以便用户可以添加空格吗?

JSFiddle

我使用了他的代码并在这里进行了修改:

$('#text').keyup(function(e, w) {
$("#prev").html($(this).val());

var txtwidth = $( "#text-preview" ).width();
$( "#textWidth" ).text( "Approx. Width: " + txtwidth + " px." );
}).keypress(function(e) {
return /[a-z0-9.-]/i.test(String.fromCharCode(e.which));
});

HTML:

                          <!--display user input-->
<span id="text-preview"><p id="prev" class="form_result"></p></span>
<!--display width-->
<p id="textWidth"></p>
<label class="sign-text">Enter your text
<input type="text" name="text" id="text" class="form-control enter-text-field validation-passed" value="Enter Your Text">
</label>

最佳答案

$('#text').keyup(function(e, w) {
$("#prev").html($(this).val());

var txtwidth = $( "#text-preview" ).width();
$( "#textWidth" ).text( "Approx. Width: " + txtwidth + " px." );
}).keypress(function(e) {
return /[a-z0-9.-\s]/i.test(String.fromCharCode(e.which));
});

按键函数中的正则表达式需要\s来支持空格字符。

关于javascript - 无法在输入文本中添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32036702/

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