$(this) 錨點

 

jQuery語法中有一句子$(this).action

意思就是指在現在jQuery程式現在所處理的HTML元素上再做另外處理

例如:

<!DOCTYPE html>
<html>
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $(this).hide();
            });
        });
    </script>
</head>
<body>
    <h2>This is a heading</h2>
    <p>This is a paragraph.</p>
    <p>This is another paragraph.</p>
    <button>Click me</button>
</body>
</html>

就是在現在jQuery所處理的"button"節點上再做hide()動作