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


JQuery focus()用法及代码示例


jQuery focus()是一种内置方法,用于关注元素。该元素通过鼠标单击或tab-navigating 按钮获得焦点。

用法:

$(selector).focus(function)

这里的selector就是被选择的元素。

参数:它接受回调函数形式的可选参数,一旦焦点事件发生就会调用该回调函数。

示例 1:下面的示例解释了 focus() 方法以及传递给它的回调函数。

HTML


<!DOCTYPE html>
<html>
<head>
    <style>
        span {
            display: none;
        }
        body {
            width: 35%;
            height: 50px;
            border: 2px solid green;
            padding: 35px;
            margin: 10px;
        }
    </style>
    <script src=
"https://code.jquery.com/jquery-1.10.2.js">
    </script>
</head>
<body>
    <!-- this paragraph element get focused -->
    <p>
        <input type="text"> <span>focused</span>
    </p>
    <!-- jQuery code to show working of this method -->
    <script>
        $("input").focus(function () {
            $(this).next("span").css(
                "display", "inline");
        });
    </script>
</body>
</html>

输出:

示例 2:在下面的示例中,调用 focus() 方法时不带任何参数。

HTML


<!DOCTYPE html>
<html>
<head>
    <style>
        span {
            display: none;
        }
        body {
            width: 30%;
            height: 50px;
            border: 2px solid green;
            padding: 35px;
            margin: 10px;
        }
    </style>
    <script src=
"https://code.jquery.com/jquery-1.10.2.js">
    </script>
</head>
<body>
    <!-- this paragraph element get focused -->
    <p>
        <input type="text"> <span>focused</span>
    </p>
    <!-- jQuery code to show working of this method -->
    <script>
        $("input").focus();
    </script>
</body>
</html>

输出:



相关用法


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