Miscellaneous-Collection Manipulation

 

一、.each()

.each( function ) function Type: Function( Integer index, Element element )

注:element == this

對jQuery object集合做每一個元素的尋訪。

 

以下範例為將每一個<li>元素再加上一位數字

<!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 () {
                $("li").each(function (n) {
                    $(this).append(n);
                });
            });
        });
    </script>
</head>
<body>

    <button>Alert the value of each list item</button>

    <ul>
        <li>Coffee</li>
        <li>Milk</li>
        <li>Soda</li>
    </ul>

</body>
</html>

 

二、jQuery.param()

請參考jQuery.param()