当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery blur()用法及代码示例


jQuery blur()是一种内置方法,用于从所选元素中删除焦点。此方法启动模糊事件,或者可以附加一个函数以在模糊事件发生时运行。

用法:

$(selector).blur(function)

参数:

它接受可选参数“function”。

jQuery 示例展示 blur() 函数的工作原理:

示例 1:在下面的代码中,没有函数传递给模糊方法。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        $(document).ready(function () {
            $("#btn").click(function () {
                $("input").blur();
                $("p").html(
                    "This is blur method that is used!!!");
            });
        });
    </script>
</head>
<body>
    <!--enter value and click on the button -->
    Enter Value:
    <input type="text">
    <br><br>
    <button id="btn">
        start blur event!!!
    </button>
    <p style="color:green"></p>
</body>
</html>

输出:

示例 2:在下面的代码中,函数被传递给模糊方法。

HTML


<!DOCTYPE html>
<html>
   
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
      </script>
   
    <script>
        <!--jQuery code to show blur method-->
            $(document).ready(function () {
                $("input").blur(function () {
                    $(this).css("background-color", "#ADFF2F");
                });
            });
    </script>
</head>
   
<body>
    <!-- Enter a value to the field and click outside
        to see the change -->
    Enter Value:
    <input type="text" name="fullname">
</body>
   
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery blur() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。