日期:2014-05-16 浏览次数:20484 次
<head>
    <style type="text/css">
    </style>
    <script type="text/javascript" src="jquery-1.5.2.min.js"></script>
    <script>
        $(function() {
            alert($("li:first").closest(["ul", "body"]));
        })
    </script>
</head>
<body>
        <ul><li></li><li></li></ul>
</body>
<head>
    <style type="text/css">
    </style>
    <script type="text/javascript" src="jquery-1.5.2.min.js"></script>
    <script>
        $(function() {
            alert($("li:first").closest(["ul", "body"]).size());
        })
    </script>
</head>
<body>
        <ul><li></li><li></li></ul>
</body>