jQueryを使ってスペースを削除する方法


このチュートリアルでは、jQueryを使用して余分なスペースを削除する方法について説明します.TextBoxから空白を削除するには、多くの時間が必要です.
私はあなたに非常に簡単な例を与えて、テキストボックスから空白を削除します.この例では、1つのテキストボックスを追加して文字列と1つの送信ボタンを追加しました.
<html lang="en">
<head>
    <title>How to remove spaces using JQuery - websolutionstuff.com</title>  
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>

<div>
  <h1>How to remove spaces using JQuery - websolutionstuff.com</h1>
  <textarea class="content-text">
    This is demo how to remove space using jquery.
  </textarea>
  <button>Remove Space</button>
</div>

<script type="text/javascript">
  $("button").click(function(){
      removeText = $(".content-text").val();
      var rm_space = removeText.replace(/ /g,'');
      alert(rm_space);
  });
</script>
</body>
</html>

Read Also : How To Check Email Already Exist Or Not In Laravel