js 默认行为取消

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 默认行为取消相关的知识,希望对你有一定的参考价值。

js 默认行为取消   可以简单的  return false;   看需求吧

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>事件编程</title>
      
        <script>
        //取消默认行为
        function prevent(event) {
            if(window.event) {
                  window.event.returnValue=false;
            } else {
                  event.preventDefault();
           }
       }
            window.onload = function(){
                $(btnLogin).onclick = function(event){
                    if ($(username).value == ‘‘) {
                       prevent(event);
                    }
                }
            }
        </script>
    </head>
    <body>
        <form action=‘moren.phpmethod=‘post‘>
            用户:<input id=‘username‘ name=‘username‘ type=‘text‘><hr>密码:<input name=‘password‘ type=‘password‘><hr><input type=‘submit‘ id=‘btnLogin‘ value=‘Login‘>
        </form>
    </body>
</html>

 

以上是关于js 默认行为取消的主要内容,如果未能解决你的问题,请参考以下文章

JS阻止冒泡和取消默认事件(默认行为)

js 阻止事件冒泡和默认行为 preventDefaultstopPropagationreturn false

如何在 Vs Code 中更改默认自动选择的用户片段行为

JS 中的return false的作用

取消图片的默认事件

向 UITextView 添加手势会取消默认行为