<legend id='BFw7v'><style id='BFw7v'><dir id='BFw7v'><q id='BFw7v'></q></dir></style></legend>
  • <tfoot id='BFw7v'></tfoot>

      <bdo id='BFw7v'></bdo><ul id='BFw7v'></ul>
  • <small id='BFw7v'></small><noframes id='BFw7v'>

    <i id='BFw7v'><tr id='BFw7v'><dt id='BFw7v'><q id='BFw7v'><span id='BFw7v'><b id='BFw7v'><form id='BFw7v'><ins id='BFw7v'></ins><ul id='BFw7v'></ul><sub id='BFw7v'></sub></form><legend id='BFw7v'></legend><bdo id='BFw7v'><pre id='BFw7v'><center id='BFw7v'></center></pre></bdo></b><th id='BFw7v'></th></span></q></dt></tr></i><div id='BFw7v'><tfoot id='BFw7v'></tfoot><dl id='BFw7v'><fieldset id='BFw7v'></fieldset></dl></div>

        JS去掉字符串前后空格、阻止表单提交的实现代码

        时间:2023-12-10

        <legend id='Y0LNe'><style id='Y0LNe'><dir id='Y0LNe'><q id='Y0LNe'></q></dir></style></legend>
        • <bdo id='Y0LNe'></bdo><ul id='Y0LNe'></ul>
          • <small id='Y0LNe'></small><noframes id='Y0LNe'>

                <tbody id='Y0LNe'></tbody>
              <tfoot id='Y0LNe'></tfoot>

              1. <i id='Y0LNe'><tr id='Y0LNe'><dt id='Y0LNe'><q id='Y0LNe'><span id='Y0LNe'><b id='Y0LNe'><form id='Y0LNe'><ins id='Y0LNe'></ins><ul id='Y0LNe'></ul><sub id='Y0LNe'></sub></form><legend id='Y0LNe'></legend><bdo id='Y0LNe'><pre id='Y0LNe'><center id='Y0LNe'></center></pre></bdo></b><th id='Y0LNe'></th></span></q></dt></tr></i><div id='Y0LNe'><tfoot id='Y0LNe'></tfoot><dl id='Y0LNe'><fieldset id='Y0LNe'></fieldset></dl></div>

                  JS去掉字符串前后空格

                  在JavaScript中,我们可以使用trim()函数去掉字符串前后空格,如下示例:

                  var str = "   hello world   ";
                  console.log(str.trim());   // 输出: "hello world"
                  

                  此外,如果要去掉字符串中间的空格,我们可以使用replace()函数结合正则表达式,如下示例:

                  var str = "hello    world";
                  str = str.replace(/\s+/g,"");
                  console.log(str);     // 输出: "helloworld"
                  

                  阻止表单提交的实现代码

                  在HTML中,表单的提交可以通过form元素的submit()函数完成,而阻止表单提交的方法有很多,如下示例:

                  1. 使用return false;

                  在表单的onsubmit事件中使用return false来阻止表单提交,如下示例:

                  <form onsubmit="return false;">
                    <input type="text" name="username">
                    <input type="password" name="password">
                    <button type="submit">登录</button>
                  </form>
                  
                  1. 使用preventDefault()函数

                  在表单的submit事件中使用preventDefault()函数来阻止表单提交,如下示例:

                  <form>
                    <input type="text" name="username">
                    <input type="password" name="password">
                    <button type="submit">登录</button>
                  </form>
                  
                  <script>
                    document.querySelector("form").addEventListener("submit", function(event) {
                      event.preventDefault();
                    });
                  </script>
                  

                  以上是JS去掉字符串前后空格和阻止表单提交的两个示例,希望对你有所帮助。

                  上一篇:前台js改变Session的值(用ajax实现) 下一篇:从0到1学习JavaScript编写贪吃蛇游戏

                  相关文章

                  <legend id='ogQcL'><style id='ogQcL'><dir id='ogQcL'><q id='ogQcL'></q></dir></style></legend>

                  <small id='ogQcL'></small><noframes id='ogQcL'>

                      <bdo id='ogQcL'></bdo><ul id='ogQcL'></ul>

                  1. <i id='ogQcL'><tr id='ogQcL'><dt id='ogQcL'><q id='ogQcL'><span id='ogQcL'><b id='ogQcL'><form id='ogQcL'><ins id='ogQcL'></ins><ul id='ogQcL'></ul><sub id='ogQcL'></sub></form><legend id='ogQcL'></legend><bdo id='ogQcL'><pre id='ogQcL'><center id='ogQcL'></center></pre></bdo></b><th id='ogQcL'></th></span></q></dt></tr></i><div id='ogQcL'><tfoot id='ogQcL'></tfoot><dl id='ogQcL'><fieldset id='ogQcL'></fieldset></dl></div>
                  2. <tfoot id='ogQcL'></tfoot>