JQuery - .one()

JQuery .one() 只執行一次

因為最近系統有個清單選單是非靜態的的清單,每當mouseover時候就會載入該清單,但我不希望這樣的動作一直重複,

只有在第一次滑入的時候會把該清單下的子項目帶出,因此查到了這個使用方式。 


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

    <script>
        $(document).ready(function () {
            $("div").one("click", function () {
                alert("this message would showed just one time.")
            });
        });        
    </script>        
</head>
<body>
    <div>clck me</div>
</body>
</html>