表单-过滤空格 小写变大写

Posted 后小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表单-过滤空格 小写变大写相关的知识,希望对你有一定的参考价值。

1 css引入方式

2 document.querySelector()与document.getElementById():querySelector静态的,但是例子不能用,否则查找为空 getElementById动态的,一次到位

3 id 唯一的意思是属性值只能有一个

4 replace() :第二个参数取代第一个

5 \u00A0 空格另一种编码,\s有遗漏时

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>过滤</title>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
  <style>
    .baiBtn {
      position: absolute;
      top: 35%;
      left: 30%;
      text-align: center;
      transform: translate(50%,50%);
    }
  </style>
</head>
<body>
  <div class="baiBtn">
    <input class="baiInput" type="text" value="[content]">
    <button type="button" class="bai btn btn-primary" id="baiBtn 1">过滤空格</button>
    <button type="button" class="bai btn btn-primary" id="baiBtn 2">对照</button>
  </div>
  <script>
    var log = function(){
      console.log.apply(console,arguments)
    }
    var input = document.querySelector(‘.baiInput‘)
    var btnPrimar1 = document.getElementById(‘baiBtn 1‘)
    var btnPrimar2 = document.getElementById(‘baiBtn 2‘)
    btnPrimar1.addEventListener(‘click‘,function(){
      input.value = input.value.replace(/(\s|\u00A0)+/g,"")
      input.value = input.value.replace(/\b\w+\b/g,function(word){
        return word.substring().toUpperCase()
    })
  })  
  </script>
</body>
</html>

  

以上是关于表单-过滤空格 小写变大写的主要内容,如果未能解决你的问题,请参考以下文章

excel一键大写字母变大写

为啥有的时候我的大小写字母在转换问题上会出错,我输入大写却变成了小写,小写变大写,过一会又好了

题目:求出给定字符串中大写字母、小写字母、数字、空格及其他字符的个数。 注意 C++题目

java 判断字符串首字母大写,非首字母小写代码

Java如何将每个单词的第一个字符转为大写

oracle字段怎么大写变小写,小写变大写